Hi all,
My blog that runs on Wordpress has several pages of posts. I have the page navigation set up (so I have a link for "Older Entries" and "Newer Entries").
I was wondering if it's possible to do something like this:
1 | 2 | 3 | 4 ... 32 | Last Page
EDIT: Thanks to Adam, I replaced the wp_list_pages with the wp_link_pages function as follows:
<?php $pageargs = array(
'next_or_number' => 'number'
); ?>
<ul>
<?php wp_link_pages( $pageargs ); ?>
</ul>
I also tried just the default:
<?php wp_link_pages(); ?>
However, it still doesn't work. I'm not getting post pagination. Any ideas?
Thanks, Amit