Skip to content

Instantly share code, notes, and snippets.

@fovoc
Last active August 29, 2015 14:21
Show Gist options
  • Select an option

  • Save fovoc/7c980f0df20e875c768e to your computer and use it in GitHub Desktop.

Select an option

Save fovoc/7c980f0df20e875c768e to your computer and use it in GitHub Desktop.
Shoestrap 3 - Replace hamburger icon on mobile with "MENU"
<?php
add_filter( 'shoestrap_nav_toggler', 'my_shoestrap_nav_toggler' );
function my_shoestrap_nav_toggler() {
echo '<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".nav-main, .nav-extras"><span class="sr-only">' . __( 'Toggle navigation', 'shoestrap' ) . '</span><span>' . __( 'MENU', 'shoestrap' ) . '</span></button>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment