I'm using a simple
query_posts('cat=3'); #Blog
if (have_posts()) :
while (have_posts()) : the_post();
etc in my main posts page as I only want to show posts from one category. This is working fine, but when the number of posts from that category is exhausted, the prev / next post links shows posts from other categories. Any suggestions on how I fix this?
Many thanks in advance