Skip to content

Instantly share code, notes, and snippets.

@freezvd
Forked from jamiemitchell/functions.php
Last active August 29, 2015 14:06
Show Gist options
  • Save freezvd/dc25435926ff91ac96dc to your computer and use it in GitHub Desktop.
Save freezvd/dc25435926ff91ac96dc to your computer and use it in GitHub Desktop.
<?php
/* Remove default titles
------------------------------------------------------------ */
add_action( 'get_header', 'child_remove_page_titles' );
function child_remove_page_titles() {
if ( is_page() && ! is_page_template( 'page_blog.php') || $post->post_parent ) {
remove_action( 'genesis_entry_header', 'genesis_entry_header_markup_open', 5 );
remove_action( 'genesis_entry_header', 'genesis_entry_header_markup_close', 15 );
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