What are some of your favorite methods for creating an accessible menu?
I have a series of tricks that I use to add things like aria tags, keyboard navigation, screen reader text, and other features. I would love to see some of yours.
Assume this is a multi-tiered menu meeting WCAG 2.1 AA guidelines or better. Assume this is a typical WordPress menu and we're requiring as little content manager knowledge as you can. Assume the menu is responsive.
wp_nav_menu(
array(
'theme_location' = 'main',
'depth' = 2,
)
);
I look forward to seeing what you have!
Topic accessibility menus Wordpress
Category Web