I want to display multiple posts from different categories to represent featured on my blog. What I did was <?php query_posts("showposts=2&cat=3"); $i = 1; ?>
or
<?php query_posts("showposts=2&cat=1,3"); $i = 1; ?>
Both won't work. Any clues?
|
I want to display multiple posts from different categories to represent featured on my blog. What I did was
Both won't work. Any clues? |
|||
|
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
You need a complete query loop that won't conflict with other loops:
|
|||