Forums

stop the updates catergory appearing in the list of categories (3 posts)

  1. toni2
    Member
    Posted 3 years ago #

    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?

  2. thisisedie
    Member
    Posted 3 years ago #

    <?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'); ?>

  3. toni2
    Member
    Posted 3 years ago #

    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?

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags

No tags yet.