Skip to content

Instantly share code, notes, and snippets.

@srikat
Last active August 29, 2015 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save srikat/cdf49f785efbe10ba399 to your computer and use it in GitHub Desktop.
Save srikat/cdf49f785efbe10ba399 to your computer and use it in GitHub Desktop.
Remove Primary Navigation and Header Right widget area from homepage.
<?php
//* Do NOT include the opening php tag
add_action( 'genesis_before_header', 'sk_home_specific' );
/**
* Remove Primary Navigation and Header Right widget area from homepage.
*
* @author Sridhar Katakam
* @link http://sridharkatakam.com/
*/
function sk_home_specific() {
if ( is_home() ) {
remove_action( 'genesis_after_header', 'genesis_do_nav' );
unregister_sidebar( 'header-right' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment