Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save idavinder/53ea6290509766bf6187 to your computer and use it in GitHub Desktop.
Save idavinder/53ea6290509766bf6187 to your computer and use it in GitHub Desktop.
Remove Primary Navigation Menu from specific Pages in Genesis
add_action('get_header', 'bwp_pages_remove_genesis_nav');
/**
* Remove Primary Navigation Menu from specific Pages
* @author Davinder Singh Kainth
* @Link http://www.basicwp.com/remove-primary-menu-pages-genesis/
*/
function bwp_pages_remove_genesis_nav() {
$pages = array( 61, 181 );
if ( is_page( $pages ) ) {
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