Header: Made aria-controls refer to an ID instead of a class

This commit is contained in:
Jasper de Groot 2014-12-03 01:18:09 +01:00
parent f0de1c9e8b
commit 412bdd8b81
1 changed files with 2 additions and 2 deletions

View File

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