On handheld devices the navigation toggle button says ‘Menu.’ To change this you can use a custom translation or use the storefront_menu_toggle_text
filter:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'storefront_menu_toggle_text', 'jk_storefront_menu_toggle_text' ); | |
function jk_storefront_menu_toggle_text( $text ) { | |
$text = __( 'Navigation' ); | |
return $text; | |
} |