one post from three categories on homepage
-
I have something like
< ?php if (is_home()) {
$paged = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1;
query_posts(“cat=1,2,3&paged=$paged”);
} ?>I would like to make it so that only one post in each of the three categories can show up on the main page. If I use &showposts=3, it will only show me the three recent posts regardless of the category it is in. I would like one post from each category to show up on the homepage. How do I do this?
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘one post from three categories on homepage’ is closed to new replies.