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
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
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
You must log in to post.