FB Last Posts Wordpress Plugin - Rating, Reviews, Demo & Download
Plugin Description
This plugin allows you to show posts from Facebook pages, groups and timelines directly on your website in a very simple way.
Plugin does not register shortcodes, JS scripts or any extra libraries, so it’s extremely clean & tiny and you are free to decide how your recent Facebook posts listing will look like.
If you are a fan of clean code (like me) without tons of extra scripts for plugin to work, you will definitely like this plugin. It’s extremely fast as it does not any unnecessary work and cleverly caches results.
Sample Usage
<?php
// try to get posts from Facebook
$fb_posts = fb_get_last_posts(10);
// check if result is not a WP error
if (!is_wp_error($fb_posts)):
// loop through posts and show them
foreach($fb_posts as $fb_post): ?>
<div>
<span class="author"><?php print esc_html($fb_post['author_name']);?></span>,
<span class="date"><?php print date(get_option('date_format'), strtotime($fb_post['created_time']));?></span>
<p><?php print esc_html($fb_post['message']); ?></p>
<a href="<?php print $fb_post['permalink'];?>">Original post</a>
</div>
<?php endforeach;
else:
// or display an error ?>
<div><?php print esc_html($fb_posts->get_error_message());?></div>
<?php endif; ?>