WordPress Page Navigation Plugin “WP-PageNavi”

September 4th, 2010 Category: WordPress

I 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('','','&laquo; Previous Entries') ?></div>
 <div><?php posts_nav_link('','Next Entries &raquo;','') ?></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

Share and Enjoy:
These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Digg
  • del.icio.us
  • StumbleUpon
  • Reddit
  • Webnews
  • MisterWong
  • Y!GG
  • Facebook
  • Furl
  • Google Bookmarks
  • Live-MSN
  • Readster
  • YahooMyWeb

Related posts:

  1. WPtouch: Mobile Plugin&Theme for WordPress
  2. Limit Your WordPress Tag Cloud
  3. WordPress Favicon Plugin
  4. Useful WordPress Plugins
  5. Improve WordPress Admin Performance 2
This entry was posted on Saturday, September 4th, 2010 and is filed under WordPress. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.

Leave a Reply