A javascript based display of post titles and thumbnails in a grid layout.
Use the built-in WordPress plugin installer.
OR
Download the zip file and extract the contents. Upload the 'featured-posts-grid' folder to your plugins directory (wp-content/plugins/).
To use this plugin to display the most recent posts in any category and with any tag:
<?php if (function_exists('fpg_show')) { echo fpg_show(NULL); } ?>
If you would like to customize what posts are displayed:
<?php if (function_exists('fpg_show')) {
$args = array(
'cat' => '',/* comma separated list of category ids to include (put '-' in front of ids to exclude) */
'tag' => '' /* comma separated list tag slugs to include */);
echo fpg_show($args);
}?>
If you would like to display the featured posts scroll inside of a post:
[fpg]
[fpg cat="-3" tag="featured"]
Requires: 2.9.1 or higher
Compatible up to: 3.3.2
Last Updated: 2012-1-4
Downloads: 9,320
0 of 1 support threads in the last three weeks have been resolved.
Got something to say? Need help?