WP-PageNavi WordPress Plugin

banner

WordPress by default handles large archives by adding a “back” and “forward” link to navigate through the different pages on your blog. WP-PageNavi is a WordPress Plugin that adds more advanced page navigation to WordPress. It does this by adding page number links to your different pages.

Using this plugin your readers will be able to jump from the first to the last page and other pages of your blog very easily.

To install this plugin, add this code anywhere on your footer.php

<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>

K2 users may opt to add the above code on their navigation.php

This is how my navigation.php looks like

<?php if (is_single()) { ?>
<div class="navigation">
<div class="left"><?php previous_post('« %’,”,’yes’) ?></div>
<div class=”right”><?php next_post(’ % »‘,”,’yes’) ?></div>
<div class=”clear”></div>
<?php } else { ?>
<div class=”navigation”>
<?php if(function_exists(’wp_pagenavi’)) { wp_pagenavi(); } ?>
</div>
<?php } ?>

I have added WP-PageNavi to my list of WordPress Plugins

Download WP-PageNavi

Related Articles

No Response so far

Comments are closed.