Hi eveyone,
I'm using WordPress 2.04 and I want to only show posts of default category on the blog homepage. How do this work?
Hi eveyone,
I'm using WordPress 2.04 and I want to only show posts of default category on the blog homepage. How do this work?
Modify your index.php (or home.php):
Add the following before the loop:
<?php
query_posts("cat=1");
?>
Replace the 1 with the category id of the category you want. You can find the id from admin->Manage->Catgories.
HTH
-- KD
It works well. Thanks a lot! (^_^)
This topic has been closed to new replies.