Forums

Printing 'Page 1 of ....' (4 posts)

  1. jezThomp
    Member
    Posted 1 week ago #

    Along side the previous and next buttons on my home page of blog posts.

    Can i have text showing 'Page 1 of 2' or 1 of 10 however, many pages of posts there many be?

    Any plugins or codex that can do this?

  2. MichaelH
    moderator
    Posted 1 week ago #

    I believe this plugin might help with that:
    http://wordpress.org/extend/plugins/wp-pagenavi/

  3. jezThomp
    Member
    Posted 1 week ago #

    Thanks Michael, that is kind of what i mean..

    This Wordpress site does it exactly how i want it too..

    http://www.wearebuild.com/blog/

    I wonder what they use...?

  4. MichaelH
    moderator
    Posted 1 week ago #

    Yep, WP PageNavi will do that and more.

    Or you could also modify your Templates to use the query vars such as:

    <?php
    //display Page x of y pages
    $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
    echo 'Page ' . $paged . ' of ' . $wp_query->max_num_pages . ' pages';
    ?>

Reply

You must log in to post.

About this Topic