Skip to content

Instantly share code, notes, and snippets.

@jameskoster
Created January 26, 2015 13:41
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jameskoster/8b57738c9fdd17eb50fe to your computer and use it in GitHub Desktop.
Save jameskoster/8b57738c9fdd17eb50fe to your computer and use it in GitHub Desktop.
Storefront - Change Primary Navigation text on nav button toggle
add_filter( 'storefront_menu_toggle_text', 'jk_storefront_menu_toggle_text' );
function jk_storefront_menu_toggle_text( $text ) {
$text = __( 'Navigation' );
return $text;
}
@k1msho
Copy link

k1msho commented May 7, 2020

Where i have to put it?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment