WordPress Page Navigation Plugin “WP-PageNavi”
September 4th, 2010 Category: WordPressI think the original page navigation of WordPress is not very nice. Simple, but not very nice. Searching for a nicer version I found the plugin WP-PageNavi. It generates a page navigation which looks like:
![]()
Pretty nice. But it needs minor modifications in your template code after installation. In my case I had to replace the following lines of code in a few .php files in my template.
<div id="pagenavi">
<!--
<div><?php posts_nav_link('','','« Previous Entries') ?></div>
<div><?php posts_nav_link('','Next Entries »','') ?></div>
-->
<?php wp_pagenavi(); ?>
</div>Simply find all code places with the posts_nav_link(..) function call, remove them and add the wp_pagenavi() function call. That’s it.
Plugin Homepage: WP-PageNavi WordPress Plugin













Leave a Reply