
Originally Posted by
Jeffro
When I remove the category navigation bar, I'm going to find a way to add a drop down menu with a list of the categories. I wonder if I can add it to the wp_list_pages navigation bar.
Yes, you can.
Just wrap both function calls in UL tags, and specify the argument '&title_li=' (which ensures that the function doesn't add containing UL tags), like such:
PHP Code:
<ul>
<?php wp_list_pages('title_li='); ?>
<?php wp_list_categories('title_li='); ?>
</ul>
Thus, pages will be listed first, each in its own LI. Then categories will be listed, each in its own LI.
(Doing that from memory, but it should be correct.)