On my home page I show 10 posts out of 40. My problem is that the next and previous buttons are not showing below the last post. This is the same for when i view posts by category.
The code i have is
<div class="navigation">
<div class="alignleft"><?php previous_post(); ?></div>
<div class="alignright"><?php next_post(); ?></div>
</div>
I have also tried
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Previous Posts') ?></div>
<div class="alignright"><?php previous_posts_link('Next Posts »') ?></div>
</div>
I did read somewhere that this may be a permalink issue. My set up is
/%category%/%postname%/
Anyone have any ideas, suggestions, plugins?
Thanks.