Anonymous
Unregistered
Posted 1 year ago #
I'm getting quite annoyed with Wordpress.
I have 1 category, there are 3 posts under it and 1 sub category.
I have 1 post under the sub category.
Now all I want to do is list the 3 posts under the MAIN category NOT the one in the subcategory.
How do I do this?
Anonymous
Unregistered
Posted 1 year ago #
can someone help me please?
richarduk
Member
Posted 1 year ago #
Before your loop place something like this:
<?php query_posts('order=DESC&showposts=3&cat=5'); ?>
which will show 3 posts from category 5 (and hopefully not from subcategories of 5)