Skip to content

Instantly share code, notes, and snippets.

@vfontjr
Created May 5, 2020 09:34
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 vfontjr/4ccfb3a5d96dda722b9d79364679a340 to your computer and use it in GitHub Desktop.
Save vfontjr/4ccfb3a5d96dda722b9d79364679a340 to your computer and use it in GitHub Desktop.
<?php
/** display secondary menu only on chosen page **/
add_action( 'template_redirect', 'child_conditional_actions' );
function child_conditional_actions() {
if ( !is_page( 8 ) )
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