i want to display my sidebar with links of categories its subcategories and further below its tags how can i
like below
<ul>
<li>catagory1<li>
<ul>
<li>subcategory1</li>
<ul>
<li>Tag1</li>
<li>tag2</li>
</ul>
<li>subcategory2</li>
<ul>
<li>Tag1</li>
<li>tag2</li>
</ul>
</ul>
<li>category2</li>
.
.
.
.and so on
</ul>
and i m try to use wp_list_categories() for this.