Skip to content

Instantly share code, notes, and snippets.

Created January 1, 2013 00:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/4424174 to your computer and use it in GitHub Desktop.
Save anonymous/4424174 to your computer and use it in GitHub Desktop.
Remove Genesis Page Titles
//***Remove Page Titles From All Pages Except Blog Page Template**/
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