WP Twitter/Facebook Style Pagination

WordPress plugin for implementing Twitter and Facebook style 'Load More' pagination.

Author:Sagar Bhandari (profile at wordpress.org)
WordPress version required:3.0+
WordPress version tested:3.2.1
Plugin version:1.0.1
Added to WordPress repository:10-07-2011
Last updated:10-07-2011
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
Rating, %:0
Rated by:0
Plugin URI:http://www.thewebgig.com/wp-twitterfacebook-s...
Total downloads:4 919
Active installs:30+
plugin download
Click to start download

Author Site| Plugin Home Page

WordPress plugin for implementing Twitter and Facebook style 'Load More' pagination.

Some of its features are:

  • Easy setup.

  • Minimal Configuration.

  • Option to define the file from which the posts/content will be loaded. This can be defined individualy via the function parameter and globally via the admin options.

  • Option to define the element to which the posts/content will be rendered. This can be defined individualy via the function parameter and globally via the admin options.

  • Option to override the output via action hook.Use 'twg_tfsp_query_posts' to add a custom hook.

    `add_action('twg_tfsp_query_posts','twg_tfsp_custom_query_posts');

    function twg_tfsp_custom_query_posts(){

    global $paged;

    You can add any parameters here but the 'paged' parameter is a must

    query_posts(array('post_type' => 'custom_post_type', 'paged' => $paged));

    }`