Forums

Please help me with category and subcategory links (2 posts)

  1. brentmcnutt
    Member
    Posted 7 months ago #

    How do I display my main category links only on the home page and display my subcategory links only on the main category page the subcategory is under?

    Thanks,

    Brent

  2. esmi
    Member
    Posted 7 months ago #

    To display only top level categories, use wp_list_categories('depth=1'). Displaying sub-categories only is a little more difficult. You'll need to grab the current category id and then use something like:

    wp_list_categories('child_of=current_category_id')

    http://codex.wordpress.org/Template_Tags/wp_list_categories#Only_Show_Children_of_a_Category

Reply

You must log in to post.

About this Topic