In my sidebar I have the categories listed by using
<?php wp_list_cats(); ?>
But I don't want the updates categoey listed in that list. Is there anyway to remove that one category from the list?
In my sidebar I have the categories listed by using
<?php wp_list_cats(); ?>
But I don't want the updates categoey listed in that list. Is there anyway to remove that one category from the list?
<?php wp_list_cats('hide_empty=0&exclude=CATEGORY ID HERE'); ?>
So if the category ID for "updates" is 6 for instance, it would be:
<?php wp_list_cats('hide_empty=0&exclude=6'); ?>
And if you want to exclude more than one category you'd separate the ID's with commas like:
<?php wp_list_cats('hide_empty=0&exclude=6,12,7'); ?>
Thankyou :)
One more question. How do i make the posts from the updates category show on the front page and only those posts from that category?
This topic has been closed to new replies.