Wordpress menu
I have menu bar that displays the pages of my site, now I wonder if there is any way for the menu bar to show both the pages AND the categories?
The code to display the pages is:
and the code to display the categories is:
The current code in the header.php is this:
and it obviously shows the pages....
Thank you!
I have menu bar that displays the pages of my site, now I wonder if there is any way for the menu bar to show both the pages AND the categories?
The code to display the pages is:
<?php wp_list_pages ?>
and the code to display the categories is:
<?php wp_list_categories ?>
The current code in the header.php is this:
<div id="cat-menu" class="menu">
<ul id="cat-menu-shadow">
<?php wp_list_pages('title_li=&depth=1'); ?>
</ul>
<ul>
<?php wp_list_pages('title_li=&depth=1'); ?>
</ul>
</div>
and it obviously shows the pages....
Thank you!
Last edited: