Wallogit.com
2017 © Pedro Peláez
WordPress menu walker which adds appropriate WIA-ARIA roles to dropdown menus.
Nav menu walker for WP with correct WAI-ARIA roles for dropdown menus., (*1)
Detailed explanation in a blogpost., (*2)
You can install this class using Composer (preferred method) or manually copying this file to your theme / project., (*3)
After that, include it in your theme, probably something like (assuming you installed it using Composer):, (*4)
require_once 'vendor/proteusthemes/wai-aria-walker-nav-menu/aria-walker-nav-menu.php';
You must enqueue wai-aria.js as well, because the aria-expanded attributes needs to be updated with JS., (*5)
Finally, include the menus in your theme files as per example below:, (*6)
<nav class="collapse navbar-collapse" role="navigation" aria-label="<?php _e( 'Main Menu', 'your-textdomain' ); ?>">
<?php
if ( has_nav_menu( 'your-menu' ) ) {
wp_nav_menu( array(
'theme_location' => 'your-menu',
'container' => false,
'menu_class' => 'main-navigation',
'walker' => new Aria_Walker_Nav_Menu(),
'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>',
) );
}
?>
</nav>
Mind:, (*7)
'walker' => new Aria_Walker_Nav_Menu(),<nav> wrapping element and 'container' => false in the argumentsrole="navigation"aria-label="<?php _e( 'Main Menu', 'your-textdomain' ); ?>"'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>',This repo aims to be 1:1 compatible with latest WP version, mainly with the class Walker_Nav_Menu in the file /<path-to-wp>/wp-includes/nav-menu-template.php., (*8)
Current version is compatible with WP core 4.5., (*9)
No need to explain - fork me and create a pull request., (*10)