Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save idavinder/c5e57167e31d1dace0e7 to your computer and use it in GitHub Desktop.
Save idavinder/c5e57167e31d1dace0e7 to your computer and use it in GitHub Desktop.
Remove Primary Menu from Homepage in Genesis
add_action('get_header', 'bwp_homepage_remove_genesis_nav');
/**
* Remove Primary Navigation Menu from Homepage
* @author Davinder Singh Kainth
* @Link http://www.basicwp.com/remove-primary-menu-pages-genesis/
*/
function bwp_homepage_remove_genesis_nav() {
if ( is_home() ) {
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