Posts: 457
Name: Randy
Location: Northern Wisconsin
|
Your paging is not working properly because you have <?php posts_nav_link(' ', 'Previous', 'Next'); ?> after the last <?php endif; ?>. Everything you want to do with a loop must be done within the loop.
Try this:
<?php endwhile; ?>
<div id="post-nav">
<?php posts_nav_link(' ', 'Previous', 'Next'); ?>
</div>
<?php endif; ?>
|