Changeset 1977721
- Timestamp:
- 11/20/2018 11:11:44 PM (7 years ago)
- Location:
- social-articles/trunk
- Files:
-
- 3 edited
-
includes/social-articles-manage-functions.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
social-articles.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
social-articles/trunk/includes/social-articles-manage-functions.php
r1916678 r1977721 131 131 <?php 132 132 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); 134 136 ?> 135 137 </div> -
social-articles/trunk/readme.txt
r1916678 r1977721 4 4 Tags: buddypress, articles, frontend, posts, categories, blog, featured image, social 5 5 Requires at least: 4.4 6 Tested up to: 4.9.76 Tested up to: 5.0 7 7 Requires PHP: 5.6 8 Stable tag: 2.9 8 Stable tag: 2.9.5 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 75 75 76 76 == Changelog == 77 78 = 2.9.5 = 79 * Bug Fixing 80 * Support for WP 5.0 and BP 3.2 81 77 82 = 2.9 = 78 83 * Compatibility for non string notifications -
social-articles/trunk/social-articles.php
r1916678 r1977721 3 3 Plugin Name: Social Articles 4 4 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 6 6 Author: Broobe 7 7 Author URI: http://www.broobe.com … … 100 100 101 101 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 } 105 107 } 106 108 }
Note: See TracChangeset
for help on using the changeset viewer.