>
Download This Plugin | |
Download Elegant Themes | |
Name | Facebook php SDK |
Version | 2.1.2 |
Author | Piyush Mishra |
Rating | 0 |
Last updated | 2011-03-12 08:22:00 |
Downloads |
1225
|
Download Plugins Speed Test plugin for Wordpress |
Home page PageSpeed score has been degraded by 0%, while Post page PageSpeed score has been degraded by 0%
Facebook php SDK plugin added 3 bytes of resources to the Home page and 6 bytes of resources to the sample Post page.
Facebook php SDK plugin added 0 new host(s) to the Home page and 0 new host(s) to the sample Post page.
Great! Facebook php SDK plugin ads no tables to your Wordpress blog database.Plugin keeps all versions of facebook php-sdk available on github after 2.1.1 Stricly to be used only as a dependency by other plugins on a WordPress installation.
= For Developers=
Use the following code to load the required facebook sdk version
add_filter('fb_php_sdk_load','your_filter');
function your_filter($array)
{
$array[] = '2.1.2'; //exact version number you need
return $array;
}
For latest tagged version use new Facebook for older versions, Add the version number replacing '.' with '' after 'Facebook' call to use the version needed. ex:- new Facebook_2_1_3() for version 2.1.3
I run filter at priority 100 so you should either leave the third parameter blank or pick a lower number.