Skip to content

Instantly share code, notes, and snippets.

@benweiser
Created June 5, 2015 18:38
Show Gist options
  • Select an option

  • Save benweiser/820e6eceefcb9126e318 to your computer and use it in GitHub Desktop.

Select an option

Save benweiser/820e6eceefcb9126e318 to your computer and use it in GitHub Desktop.
Detect page template and show secondary nav
if ( is_page_template( 'about.php' ) ) {
// Returns true when 'about.php' is being used.
add_action('genesis_after_header', 'genesis_do_subnav');
} else {
// Returns false when 'about.php' is not being used.
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