I am trying to make a list in my sidebar of Categories with a sub list of the posts in that category... somewhat like this:
<ul>
<li>
<a href="category_url">CATEGORY</a>
<ul>
<li><a href="post_url">POST</a></li>
</ul>
</li>
</ul>
Obviously I would like this to loop until it has played out all categories and posts within them.
I am looking for tha code to make this happen in the same list format as I have custom styled menu tool in which i would like this code snippet to play out... so i need to di this WITHOUT A PLUGIN.
Would really appreaciate any help!!