Hey everyone. I have a theme with two custom menus. One for the top and one for the bottom. Everything works on the menu except, the custom link does not show up.
Here's the site. It should have a contact us link in both menus. This would link to the email address.
Here's the code in the functions.php file.
<?php
//Add Menus to theme
add_action( 'init', 'register_my_menus' );
function register_my_menus() {
register_nav_menus(
array(
'MenuA' => __( 'MenuA' ),
'MenuB' => __( 'MenuB' )
));
}
?>
Here's the code in the header.php file.
<div id="navA">
<?php wp_nav_menu( array( 'theme_location' => 'MenuA', 'menu_class' => 'menuA' ) ); ?>
</div>
Hope someone can help solve this mystery.