Skip to content

Instantly share code, notes, and snippets.

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 braddalton/5467152 to your computer and use it in GitHub Desktop.
Save braddalton/5467152 to your computer and use it in GitHub Desktop.
add_action('get_header', 'child_remove_genesis_do_nav');
/**
*@author Brad Dalton
*
*@Link http://wpsites.net/web-design/remove-nav-menu-specific-page/
*/
function child_remove_genesis_do_nav() {
if ( is_home() || is_page() || is_archive() ) {
remove_action('genesis_after_header', 'genesis_do_nav');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment