I am working on a site that will use categories quite extensively. I am actually dealing with main categories that can have multiple sub categories. Posts will be added to specific sub-categories for display. I am going to have a page that will display a list of all of the main categories. I want the user to click the link and then see the list of sub-categories. Right now when I click the link it goes right to the posts within the sub-category...
This is how I display the main category list (this is on a custom template)
<?php wp_list_categories('title_li=&sort_column=name&depth=1'); ?>
How do I edit this so that it goes to a page displaying the sub-categories for the selected category?
Thanks!! and please let me know if more info is required (I can't post a link because the site is not live)