Plugin Directory

Changeset 499934


Ignore:
Timestamp:
02/03/2012 07:54:33 PM (14 years ago)
Author:
andykillen
Message:

1.60.7

Location:
share-and-follow/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • share-and-follow/trunk/readme.txt

    r498802 r499934  
    66Requires at least: 3.2
    77Tested up to: 3.3.1
    8 Stable tag: 1.60.6
    9 
    10 Add Share Icons, Follow Links, Facebook Like, Twitter Tweet and other buttons on your site in the way you want. Simple & adaptable social networking.
     8Stable tag: 1.60.7
     9
     10Add Share Icons, Follow Links, Facebook Like, Twitter Tweet and other buttons in the way you want. Simple & adaptable social networking.
    1111
    1212== Description ==
     
    298298== Changelog ==
    299299
     300= 1.60.7 =
     301
     302Found a problem with share images when choosing a featured image.  fixed
     303
    300304= 1.60.6 =
    301305
     
    841845== Upgrade Notice ==
    842846
     847
     848= 1.60.7 =
     849
     850fixed problem with featured image in facebook shares.
     851
    843852= 1.60.6 =
    844853
  • share-and-follow/trunk/share-and-follow.php

    r498802 r499934  
    33Plugin Name: Share and Follow
    44Plugin URI: http://share-and-follow.com/wordpress-plugin/
    5 Version: 1.60.6
     5Version: 1.60.7
    66Author: Andy Killen
    77Author 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.
     8Description: A simple plugin to manage sharing and following for social networking.
    99Copyright 2010 --> 2012 Andy Killen  (email : andy  [a t ] phat hyphen reaction DOT com)
    1010
     
    139139                    function findMetaImageURL($post_id){
    140140                    if(function_exists('has_post_thumbnail')){
    141                         if(has_post_thumbnail( $post_id )){
     141                        if( has_post_thumbnail( $post_id )){
    142142                            $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];
    144145                        }else{
    145146                            $image_src = get_post_meta($post_id, 'image_src', true);
Note: See TracChangeset for help on using the changeset viewer.