Hi,
Does anyone know how to change "Older posts" and "Newer posts" at the bottom into numbers instead? So that it'll say "1,2,3" depending on how many pages there are. Is this possible?
Thanks in advance!
Hi,
Does anyone know how to change "Older posts" and "Newer posts" at the bottom into numbers instead? So that it'll say "1,2,3" depending on how many pages there are. Is this possible?
Thanks in advance!
Try it with a plugin: http://wordpress.org/extend/plugins/wp-pagenavi/
This theme uses next_posts_link()
Take a look at replacing it with paginate_links() if you don't want to use a plugin. To replace it, you will need to create a child theme and then add a new loop.php, with the lines shown below replaced with paginate_links(etc).
<div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'brunelleschi' ) ); ?></div>
<div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'brunelleschi' ) ); ?></div>You must log in to post.