Hi people I've recently installed WP-Page Navi but I still got iNove default and ugly navigation bar. How to activate it? Where and what code should I change?
Hi people I've recently installed WP-Page Navi but I still got iNove default and ugly navigation bar. How to activate it? Where and what code should I change?
You need to add the following code to the bottom of your index.php file:
<?php if(function_exists('wp_pagenavi')) { ?>
<div class="page-navi">
<?php wp_pagenavi(); ?>
</div>
<?php endif; ?>
This code is normally added at the bottom of the page just before the call:
<?php get_sidebar(); ?>
You now have to style the class page-navi to suit your requirements.
I've did it and then I can only acess homepage. Error with all others. And there isn't the
<?php get_sidebar(); ?
on inove index.php
Can someone help?
I believe Page Navi has updated their plugin and its installation process since your last post. Check out their installation instructions here: http://wordpress.org/extend/plugins/wp-pagenavi/installation/
This topic has been closed to new replies.