Changeset 499934
- Timestamp:
- 02/03/2012 07:54:33 PM (14 years ago)
- Location:
- share-and-follow/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (3 diffs)
-
share-and-follow.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
share-and-follow/trunk/readme.txt
r498802 r499934 6 6 Requires at least: 3.2 7 7 Tested up to: 3.3.1 8 Stable tag: 1.60. 69 10 Add Share Icons, Follow Links, Facebook Like, Twitter Tweet and other buttons on your sitein the way you want. Simple & adaptable social networking.8 Stable tag: 1.60.7 9 10 Add Share Icons, Follow Links, Facebook Like, Twitter Tweet and other buttons in the way you want. Simple & adaptable social networking. 11 11 12 12 == Description == … … 298 298 == Changelog == 299 299 300 = 1.60.7 = 301 302 Found a problem with share images when choosing a featured image. fixed 303 300 304 = 1.60.6 = 301 305 … … 841 845 == Upgrade Notice == 842 846 847 848 = 1.60.7 = 849 850 fixed problem with featured image in facebook shares. 851 843 852 = 1.60.6 = 844 853 -
share-and-follow/trunk/share-and-follow.php
r498802 r499934 3 3 Plugin Name: Share and Follow 4 4 Plugin URI: http://share-and-follow.com/wordpress-plugin/ 5 Version: 1.60. 65 Version: 1.60.7 6 6 Author: Andy Killen 7 7 Author URI: http://phat-reaction.com 8 Description: A simple plugin to manage sharing and following . After a break in development due to family illness, Share and Follow is back and faster than ever.8 Description: A simple plugin to manage sharing and following for social networking. 9 9 Copyright 2010 --> 2012 Andy Killen (email : andy [a t ] phat hyphen reaction DOT com) 10 10 … … 139 139 function findMetaImageURL($post_id){ 140 140 if(function_exists('has_post_thumbnail')){ 141 if( has_post_thumbnail( $post_id )){141 if( has_post_thumbnail( $post_id )){ 142 142 $post_thumbnail_id = get_post_thumbnail_id( $post_id ); 143 $image_src = wp_get_attachment_image_src( $post_thumbnail_id ); 143 $image_array = wp_get_attachment_image_src( $post_thumbnail_id ); 144 $image_src = $image_array[0]; 144 145 }else{ 145 146 $image_src = get_post_meta($post_id, 'image_src', true);
Note: See TracChangeset
for help on using the changeset viewer.