Not sure where my error is (I did piece most of this together from snippets on different websites,) but when I test my theme, only "Left Menu" displays. There are definitely two menus, however where "Menu Right" should be is a duplicate of "Menu Left."
Here's my header
<nav id="navigation" role="navigation">
<?php wp_nav_menu( array('menu' => 'Left Menu' )); ?>
<?php wp_nav_menu( array('menu' => 'Right Menu' )); ?>
</nav><!-- /Navigation -->
And here's my functions.php
function register_mp_menus() {
register_nav_menus(
array( 'left-menu' => __( 'Left Menu' ), 'right-menu' => __( 'Right Menu' )));
}
add_action( 'init', 'register_mp_menus' );
Any ideas or help would be greatly appreciated!
