Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created March 15, 2012 20:03
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 billerickson/2046500 to your computer and use it in GitHub Desktop.
Save billerickson/2046500 to your computer and use it in GitHub Desktop.
<?php
add_action( 'genesis_meta', 'be_remove_menu_from_home' );
/**
* Remove menu from homepage only
*
* @author Bill Erickson
* @link http://www.billerickson.net/genesis-quick-tips
*
*/
function be_remove_menu_from_home() {
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