Need help with Custom Menus
-
Hi all,
Im having all sorts of issues adding multiple custom menus to my theme.
I have this in my functions.php:
add_action(‘init’, ‘register_custom_menu’);
function register_custom_menu() {
register_nav_menu(‘custom_menu’, __(‘Custom Menu’));
register_nav_menu(‘specials_menu’, __(‘Specials Menu’));
register_nav_menu(‘footer_menu’, __(‘Footer Menu’));
}and this in my nav areas:
<?php wp_nav_menu(array(‘menu’ => ‘specials_menu’)); ?>
<?php wp_nav_menu(array(‘menu’ => ‘custom_menu’)); ?>but they all display the same menu.
Can anyone help me out?
Thanks!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Need help with Custom Menus’ is closed to new replies.