Skip to content

Instantly share code, notes, and snippets.

@braddalton
Created March 7, 2013 06:08
Show Gist options
  • Save braddalton/5105882 to your computer and use it in GitHub Desktop.
Save braddalton/5105882 to your computer and use it in GitHub Desktop.
Delete Page Titles On All Pages Including Archives
add_action( 'get_header', 'wpsites_remove_page_titles' );
function wpsites_remove_page_titles() {
if ( is_page() && is_page_template() )
remove_action( 'genesis_post_title', 'genesis_do_post_title' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment