I’m trying to make a post pagination like this:
button left image | 1 2 3 4 5 |button right image
but I can’t get it work. I’ve tried:
<?php wp_link_pages('before=<p>&after=</p>&next_or_number=number&pagelink= %'); ?>
But how to add images to the left an right as buttons? thx! AD
About the wp_link_pages functions you can read in the WordPress Codex http://codex.wordpress.org/Function_Reference/wp_link_pages.
Here you go:
Good luck! 🙂
yes, it works now! Thanks
I use this code to turn
['next_or_number'] == 'next_and_number')
so I can mix it with numbers, arrows or graphics :to get the pagination nav:
Thank you!
AD