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/5767450 to your computer and use it in GitHub Desktop.
Save braddalton/5767450 to your computer and use it in GitHub Desktop.
Remove Primary Nav Menu From Site Excluding Blog Page https://wpsites.net/web-design/conditionally-remove-your-primary-secondary-nav-menu/
add_action('genesis_meta', 'remove_nav_exclude_blog_page');
/**
* @author Brad Dalton - WP Sites
* @learn more http://wpsites.net/web-design/conditionally-remove-your-primary-secondary-nav-menu/
*/
function remove_nav_exclude_blog_page() {
if ( !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