Reputation: 17
I want to show the hierarchical list of categories but I want to show all category and its subcategory
<ul>
<li ><a href="#">Main category</a>
<ul >
<li ><a href="#">Sub cat 1</a></li>
<li ><a href="#">Sub cat 2</a></li>
<li ><a href="#">Sub cat 3</a></li>
</ul>
</li>
</ul>
Please help me...?
Upvotes: 0
Views: 415
Reputation: 15949
<?php wp_list_categories('style=list&depth=0'); ?>
look for more arguments here : http://codex.wordpress.org/Template_Tags/wp_list_categories
Upvotes: 1