Skip to content

Instantly share code, notes, and snippets.

@stuartduff
Created April 5, 2016 15:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stuartduff/f5de90f3d3260f851c3c1774bf601cf7 to your computer and use it in GitHub Desktop.
Save stuartduff/f5de90f3d3260f851c3c1774bf601cf7 to your computer and use it in GitHub Desktop.
Storefront theme remove the secondary menu with and add_action();
function remove_storefront_default_actions() {
remove_action( 'storefront_header' , 'storefront_secondary_navigation' , 30 );
}
add_action( 'init', 'remove_storefront_default_actions' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment