Archived topic
title attribute for off-canvas hamburger
3 replies · Started by Pete on July 5, 2019
Viewing posts 1–4 of 4
Is there a way I can assign a title attribute for the off-canvas hamburger in the desktop menu?
Hi there,
We don't have a filter for this, but we should. I've added it to our to-dos.
For now, you can do this:
remove_filter( 'wp_nav_menu_items', 'generate_menu_plus_slidebar_icon', 10, 2 );
add_filter( 'wp_nav_menu_items', function( $nav, $args ) {
if ( 'primary' === $args->theme_location ) {
return $nav . '<li class="slideout-toggle menu-item-align-right"><a href="#" title="Your title here"></a></li>';
}
return $nav;
}, 10, 2 );
Let me know :)
Thanks Tom it works well.
You're welcome :)
This archived topic is closed to new replies.