As you can see I have one navigation bar above the header and one below the header. In this post I will show you how easy it is to add another navigation bar in Thesis theme.
It’s really simple. In fact, you only have to put the following code into custom_functions.php file.
function menu2() { ?>
<ul id="menu2" class="menu">
<?php wp_list_categories('title_li='); ?>
</ul>
<?php }
add_action('thesis_hook_after_header','menu2');
This will add a second navigation menu under the header which will include all categories. The default top navigation menu will include whatever you set in Thesis Options – I only have static pages in top navigation menu.
If you enjoyed this article, you might also like:
