Allows you to integrate Facebook Like Box into your WordPress Site.
Installation
simple-facebook-plugin directory to your /wp-content/plugins directoryCustomization
or
Use [sfp-like-box] shortcode inside your post or page. This shortcode support all default parametrs:
If you want Like Box 220 pixels width, dark color scheme and showing stream you need to use it next way:
[sfp-like-box width=220 colorscheme=dark stream=true]
or
Use sfp_like_box() template tag in your theme files.
<?php if ( function_exists("sfp_like_box") ) {
$args = array(
'url' => 'http://www.facebook.com/wordpress',
'width' => '292',
'faces' => false,
'header' => false,
'local' => 'en_US'
);
sfp_like_box( $args );
} ?>
Requires: 2.8 or higher
Compatible up to: 3.5.1
Last Updated: 2013-2-5
Downloads: 21,455
Got something to say? Need help?