Skip to content

Instantly share code, notes, and snippets.

@phpbits
Created November 6, 2015 03:48
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 phpbits/bcf5271e83580c9df0d7 to your computer and use it in GitHub Desktop.
Save phpbits/bcf5271e83580c9df0d7 to your computer and use it in GitHub Desktop.
Display Genesis Hero Section on Homepage Only
<?php
/*
* Display Hero Section on Homepage Only
*/
add_action( 'genesis_header', 'hero_homepage_only', 99 );
function hero_homepage_only(){
if( !is_front_page() && !is_home() ){
remove_action( 'genesis_after_header', 'do_hero4genesis', 99 );
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment