I have searched throughout the wordpress support to find some good information on customising the top level menu throughout a site.
I have four sections in my site that require a different top level menu.
The top level menu is called in the header in the usual way
<?php wp_nav_menu(array('theme_location' => 'header-menu', 'container' => false, 'menu_class' => 'sf-menu', 'link_before' => '<span class="menu-btn">', 'link_after' => '</span>')); ?>
Is there a way of 1. Applying different menus to different pages or 2.selecting a specific menu dependant on page slug or category it is in.
Any help gratefully accepted!