Author group posts on separate pages
-
So basically I have two groups of authors (kids/parents) that are making posts. I have it set up so that posts from each group are showing up on separate pages. The problem comes with the navigation. When you click on newer/older post links and go to /page/2, etc the blog entry doesn’t change.
The code I used to query only posts from specific authors (which I assume is where the problem lies) is:
<?php query_posts(‘author=4,5,6,7,8’); ?>
I put this up right after <?php get_header();?>. The rest is the normal blog post code.
Where should I edit/add to to get the pages and navigation links to work properly? I still want to only show those authors and still only show one blog entry per page, but I want the pages to WORK.
Thanks!
The topic ‘Author group posts on separate pages’ is closed to new replies.