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?
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?
I believe this plugin might help with that:
http://wordpress.org/extend/plugins/wp-pagenavi/
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...?
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';
?>You must log in to post.