Hi Our website has many articles with 8-10 pages. For quite some time I've been looking for a good article pages navigation plugin, but to no success. I'm looking for something like this: Here, we can see all the pages in the article, along with the Previous PAge and Next page buttons. Any plugin on Wordpress that will help me getting close to this?
For a plugin i don't know... but you can use this Code to list Your pages : <?php $thispage = $wp_query->post; if($thispage->post_parent!=0) { wp_list_pages("title_li=&child_of=".$thispage->post_parent); } else { wp_list_pages("title_li=&child_of=".$thispage->ID); } ?> Code (markup): If you want to Style much more your Pages Navigation menu, you can check this tutorial : Link Goodluck
Thanks for your effort, I want to use this with an article. What I mean is, consider this hypothetical situation. Say I have an called "Top 10 Websites" And within that article, I have 10 pages. I want a navigation menu within the article. To best illustrate this, here is a link. If you scroll to the bottom of the page, you'll see a navigation menu for the pages in the article: http://techreport.com/review/24832/nvidia-geforce-gtx-780-graphics-card-reviewed
ok, so on this website, they use a script like the Related POSTS.. but they style it to look this way... Page 1 Page 2...etc they list a POSTS Not Pages... You can do the same if you use a Related Posts Function : Check this Link then you will have to customize the Navigation style just like this one... Goodluck
I've tried these. Cant achieve what I want to. I can manage links, Previous and Next Page buttons. But not the navigation menu.