Skip to content

Instantly share code, notes, and snippets.

@braddalton
Last active August 29, 2015 14:08
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 braddalton/c202c6e299e0806e1fe0 to your computer and use it in GitHub Desktop.
Save braddalton/c202c6e299e0806e1fe0 to your computer and use it in GitHub Desktop.
add_action( 'get_header', 'site_tagline_home_only' );
function site_tagline_home_only() {
if( !is_home() OR !is_front_page()) {
remove_action( 'genesis_site_description', 'genesis_seo_site_description' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment