Paged posts - how to use numbers and next/previous links?
I want wp_link_pages (mutli-page posts) to display the page numbers, the word "previous" before those numbers, and a "next" after those numbers. It would look like this:
Prev 1, 2, 3, 4 Next
I'm attempting to do this without a plugin. Here's what I've tried so far, but it isn't working, it is only displaying numbers.
?php wp_link_pages(array(
'before' = 'span style="clear:both; display:block"Pages',
'after' = '/span',
'next_or_number'='number',
'previouspagelink' = 'previous',
'nextpagelink'= 'Next'
)); ?
Topic paginate-links wp-link-pages pagination Wordpress
Category Web