change primary menu idea to menu-1 to align with new Automattic "Theme User Experiences Requirements"

This commit is contained in:
mrwweb 2016-09-15 18:06:11 -07:00
parent ff4b374d6b
commit 396b9cbcd4
2 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ function _s_setup() {
// This theme uses wp_nav_menu() in one location.
register_nav_menus( array(
'primary' => esc_html__( 'Primary', '_s' ),
'menu-1' => esc_html__( 'Primary', '_s' ),
) );
/*

View File

@ -42,7 +42,7 @@
<nav id="site-navigation" class="main-navigation" role="navigation">
<button class="menu-toggle" aria-controls="primary-menu" aria-expanded="false"><?php esc_html_e( 'Primary Menu', '_s' ); ?></button>
<?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_id' => 'primary-menu' ) ); ?>
<?php wp_nav_menu( array( 'theme_location' => 'menu-1', 'menu_id' => 'primary-menu' ) ); ?>
</nav><!-- #site-navigation -->
</header><!-- #masthead -->