Skip to content

Instantly share code, notes, and snippets.

@wpspeak
Last active December 19, 2015 19:09
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 wpspeak/6004484 to your computer and use it in GitHub Desktop.
Save wpspeak/6004484 to your computer and use it in GitHub Desktop.
Conditionally remove secondary menu
<?php
// Conditionally remove secondary menu
add_action('template_redirect', 'afn_conditional_actions');
function afn_conditional_actions() {
if ( is_page( 10 ) ) {
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