i want to display my categories to a post like a list. i have this (parent- and child-) categories:
- Sports
- Football
- Basketball
- Toys
- Dolls
- Lego
- Books
for example one post is archived to the categories "Sports", "Football", and "Books" i want to output the categories like this:
<ul>
<li><a href="#">Sports</a>
<ul class="children">
<li><a href="#">Football</a></li>
</ul>
</li>
<li><a href="#">Books</a></li>
</ul>
…as you can see, the hierarchical order by parent->child is important!
thanks, Jochen