Skip to content

Instantly share code, notes, and snippets.

@topleague
Created September 14, 2019 14:12
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 topleague/1a62000d8d8f7589462823c8cf1d30c5 to your computer and use it in GitHub Desktop.
Save topleague/1a62000d8d8f7589462823c8cf1d30c5 to your computer and use it in GitHub Desktop.
display the primary menu conditionally
//* Remove Primary Nav Menu Conditionally
add_action('template_redirect', 'remove_nav_exclude_blog_page');
function remove_nav_exclude_blog_page() {
if ( !is_archive() && !is_single() && !is_page('blog') )
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