Uttam Mitra
Uttam Mitra

Reputation: 17

Show subcategory of all Wordpress main category

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

Answers (1)

Obmerk Kronen
Obmerk Kronen

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

Related Questions