Changeset 1712294
- Timestamp:
- 08/11/2017 07:55:00 PM (9 years ago)
- Location:
- easy-social-share-buttons/trunk
- Files:
-
- 3 edited
-
easy-social-share-buttons.php (modified) (1 diff)
-
includes/class-easy-social-share-buttons.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easy-social-share-buttons/trunk/easy-social-share-buttons.php
r1671080 r1712294 2 2 /* 3 3 * Plugin Name: Easy Social Share Buttons 4 * Version: 1.4. 14 * Version: 1.4.2 5 5 * Plugin URI: http://www.idiom.co/ 6 6 * Description: Easily add social sharing buttons to your posts and images without slowing down your site with unnecessary javascript and image files. -
easy-social-share-buttons/trunk/includes/class-easy-social-share-buttons.php
r1671080 r1712294 673 673 */ 674 674 public function add_share_buttons_to_post ( $content ) { 675 676 $post_types = apply_filters( 'update_easy_social_share_post_types', array('post') ); 675 677 676 if ( !is_singular( 'post') ) {678 if ( !is_singular( $post_types ) ) { 677 679 return $content; 678 680 } -
easy-social-share-buttons/trunk/readme.txt
r1671080 r1712294 4 4 Requires at least: 3.9 5 5 Tested up to: 4.5.2 6 Stable tag: 1.4. 16 Stable tag: 1.4.2 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 43 43 44 44 == Changelog == 45 46 = 1.4.2 = 47 * 2017-08-11 48 * Add filter 'update_easy_social_share_post_types' to add share buttons to custom post types 45 49 46 50 = 1.4.1 =
Note: See TracChangeset
for help on using the changeset viewer.