I have a drop down menu that lists the categories and I want it to list the posts only the titles. How do I do that?
Right now the code looks like this:
<div id="nav">
<ul>
<li class="drop"><span><strong>projects</strong></span>
<ul>
<?php wp_list_categories('orderby=name&depth=-1&title_li='); ?>
</ul>