Skip to content

Instantly share code, notes, and snippets.

@PurpleHippoDesign
Created May 19, 2014 14:59
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PurpleHippoDesign/42e1a1c01420c5b548fa to your computer and use it in GitHub Desktop.
Save PurpleHippoDesign/42e1a1c01420c5b548fa to your computer and use it in GitHub Desktop.
Removes Home Page Title
//* Remove page title form home page
add_action( 'get_header', 'child_remove_titles' );
function child_remove_titles() {
if ( is_front_page() ){
remove_action( 'genesis_entry_header', 'genesis_do_post_title' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment