Plugin Directory

Changeset 419893


Ignore:
Timestamp:
08/05/2011 08:24:24 PM (15 years ago)
Author:
sproject
Message:

1.4.4 release

Location:
facebook-likes-you/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • facebook-likes-you/trunk/facebook-likes-you.php

    r419165 r419893  
    44Plugin URI: http://www.sproject.name/download/wp-facebook-likes-you/
    55Description: Facebook Likes You! is simple plugin which makes it easy to add Facebook Like button and widgetable Like box. It's fully configurable, so you can decide where to append the button.
    6 Version: 1.4.3
     6Version: 1.4.4
    77Author: Piotr Sochalewski
    88Author URI: http://www.sproject.name/
     
    130130    $fb_like_settings['css_style'] = get_option('fb_like_css_style');
    131131   
     132    $defaultappid = 165570960176857;
     133   
    132134    $locale = defined(WPLANG) ? WPLANG : 'en_US';
    133135   
     
    155157
    156158    if (!$appid)
    157         $appid = '165570960176857';
     159        $appid = $defaultappid;
    158160       
    159161    return $appid; 
     
    230232        <meta property="og:title" content="<?php wp_title('&laquo;', true, 'right'); ?><?php bloginfo('name'); ?>"/>
    231233        <?php if (is_home())
    232         echo '<meta property="og:type" content="blog"/> <meta property="og:url" content="' . get_bloginfo("home") . '"/>';
    233         else echo '<meta property="og:type" content="article"/> <meta property="og:url" content="' . get_permalink() . '"/>'; ?>
     234            echo '<meta property="og:type" content="blog"/> <meta property="og:url" content="' . get_bloginfo("home") . '"/>';
     235            else echo '<meta property="og:type" content="article"/> <meta property="og:url" content="' . get_permalink() . '"/>'; ?>
    234236        <meta property="og:image" content="<?php echo fb_like_catch_image() ?>"/>
    235237        <meta property="og:site_name" content="<?php bloginfo('name') ?>"/>
    236         <meta property="fb:app_id" content="<?php echo fb_like_return_appid() ?>"/>
    237         <?php
     238        <?php if (fb_like_return_appid()!=$defaultappid)
     239            echo '<meta property="fb:app_id" content="' . fb_like_return_appid() . '"/>';
    238240    }
    239241}
  • facebook-likes-you/trunk/readme.txt

    r419165 r419893  
    55Requires at least: 2.9
    66Tested up to: 3.2
    7 Stable tag: 1.4.3
     7Stable tag: 1.4.4
    88
    99Facebook Likes You! is simple plugin which makes it easy to add Like Button and widgetable Like Box. Google +1 Button isn't a problem too!
     
    4949== Changelog ==
    5050
     51= 1.4.4 =
     52* Fix for Open Graph (extremely important if you use Open Graph and don't have own app ID)
     53
     54= 1.4.3 =
    5155* One more fix for Open Graph
    5256* Fixed settings
Note: See TracChangeset for help on using the changeset viewer.