Skip to content

Instantly share code, notes, and snippets.

@frankschrijvers
Last active November 17, 2015 16:17
Show Gist options
  • Save frankschrijvers/49e7124de68265b8e829 to your computer and use it in GitHub Desktop.
Save frankschrijvers/49e7124de68265b8e829 to your computer and use it in GitHub Desktop.
Remove site description on all pages except homepage
<?php
//* Do NOT include the opening PHP tag
//* Remove site description on all pages except homepage
add_action('get_header', 'wpstudio_remove_header');
function wpstudio_remove_header() {
if ( !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