Plugin Directory

Changeset 1977721


Ignore:
Timestamp:
11/20/2018 11:11:44 PM (7 years ago)
Author:
broobe_dev
Message:

version 2.9.5

Location:
social-articles/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • social-articles/trunk/includes/social-articles-manage-functions.php

    r1916678 r1977721  
    131131                            <?php
    132132                            echo apply_filters('sa_category_label',__("Archived", "social-articles" ) ).": ";
    133                             echo implode(" | ",apply_filters('sa_category_value',get_the_ID()));
     133                            $selected_categories = wp_get_object_terms(get_the_ID(), 'category', array('fields' => 'names'));
     134                            if(is_array($selected_categories))
     135                                echo implode(" | ",$selected_categories);
    134136                            ?>
    135137                        </div>
  • social-articles/trunk/readme.txt

    r1916678 r1977721  
    44Tags: buddypress, articles, frontend, posts, categories, blog, featured image, social
    55Requires at least: 4.4
    6 Tested up to: 4.9.7
     6Tested up to: 5.0
    77Requires PHP: 5.6
    8 Stable tag: 2.9
     8Stable tag: 2.9.5
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7575
    7676== Changelog ==
     77
     78= 2.9.5 =
     79* Bug Fixing
     80* Support for WP 5.0 and BP 3.2
     81
    7782= 2.9 =
    7883* Compatibility for non string notifications
  • social-articles/trunk/social-articles.php

    r1916678 r1977721  
    33 Plugin Name: Social Articles
    44 Description: This is the first BuddyPress plugin that let you to create and manage posts from your profile. It supports all buddypres themes, so you don't need to be an expert to use it!
    5  Version: 2.9
     5 Version: 2.9.5
    66 Author: Broobe
    77 Author URI: http://www.broobe.com
     
    100100
    101101            foreach ($selected_fields as $key => $field_config) {
    102                 $original_field = $all_fields[$key];
    103                 if (is_object($original_field)){
    104                     $original_field->add_actions();
     102                if (array_key_exists($key,$all_fields)) {
     103                    $original_field = $all_fields[$key];
     104                    if (is_object($original_field)) {
     105                        $original_field->add_actions();
     106                    }
    105107                }
    106108            }
Note: See TracChangeset for help on using the changeset viewer.