I have two menus with the default plugin installed in Wordpress Twenty Fourteen :
- Menu French
- Menu English
I have two templates using a different header.php depending on the language.
I want to customize the header.php so I can choose which menu to use.
In header.php there is the following code :
<nav id="primary-navigation" class="site-navigation primary-navigation"
role="navigation">
<button class="menu-toggle">
<?php _e( 'Primary Menu', 'twentyfourteen' ); ?>
</button>
<a class="screen-reader-text skip-link" href="#content">
<?php _e( 'Skip to content', 'twentyfourteen' ); ?>
</a>
<?php wp_nav_menu( array('theme_location'=>'primary','menu_class'=>'nav-menu' ));?>
</nav>
I want to target - Menu English -
I don't know what to add to do so.