The plugin provides a more advanced SEO pagination for WordPress to be configured with several options.
In Kubrick Theme index.php and achive.php could be a good place to start.
Just have a look for this code:
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link(__('« Older Entries'), 'kubrick'); ?></div>
<div class="alignright"><?php previous_posts_link(__('Newer Entries »', 'kubrick')); ?></div>
</div>
<?php else : ?>
...and change it like that:
<?php endwhile; ?>
<?php if (function_exists('seopagebar')) { seopagebar(); } else { ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link(__('« Older Entries'), 'kubrick'); ?></div>
<div class="alignright"><?php previous_posts_link(__('Newer Entries »', 'kubrick')); ?></div>
</div>
<?php } ?>
<?php else : ?>
Requires: 2.3 or higher
Compatible up to: 2.7
Last Updated: 2008-9-13
Downloads: 4,811
Got something to say? Need help?