Last active
March 4, 2019 14:39
-
-
Save braddalton/5767415 to your computer and use it in GitHub Desktop.
Remove Secondary Nav Menu Specific Pages Genesis https://wpsites.net/web-design/conditionally-remove-your-primary-secondary-nav-menu/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action('genesis_meta', 'remove_subnav_specific_pages'); | |
function remove_subnav_specific_pages() { | |
if ( !is_page('11446') ) | |
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