Skip to content

Instantly share code, notes, and snippets.

@WebEndevSnippets
Created January 4, 2014 15:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WebEndevSnippets/8256290 to your computer and use it in GitHub Desktop.
Save WebEndevSnippets/8256290 to your computer and use it in GitHub Desktop.
Genesis: Remove secondary menu on home page
add_action('get_header', 'webendev_remove_genesis_do_subnav');
/**
* Remove secondary menu on home page
*/
function webendev_remove_genesis_do_subnav() {
if ( is_home() ) {
remove_action( 'genesis_after_header', 'genesis_do_subnav' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment