Hello,
I've been trying to resolve a category pagination issue for weeks with no luck. I'm trying to display posts from a particular category, one post at a time. The index works, but when I go to page 2, I get a 404 error.
<?php
// The Query
query_posts( array ( 'category_name' => 'submissions', 'posts_per_page' => 1 ) );
// The Loop
while ( have_posts() ) : the_post();
endwhile;
?>
That is the code I am using. Would that do the trick?
I've also tried fixes from people who said this was a permalink issue with wordpress 3+, but none of the fixes have worked.
Does anyone have any insight to offer? I'm at my wits end!
Thanks-