Skip to content

Instantly share code, notes, and snippets.

@braddalton
Forked from anonymous/gist:4424174
Last active December 14, 2015 15:09
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/5105838 to your computer and use it in GitHub Desktop.
Save braddalton/5105838 to your computer and use it in GitHub Desktop.
Removes Titles On All Pages Excluding Blog Page Archives
add_action( 'get_header', 'bourncreative_remove_page_titles' );
function bourncreative_remove_page_titles() {
if ( is_page() && ! is_page_template( 'page_blog.php' ) )
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