Remove Page Title on Frontpage
If you use the Genesis framework and want to remove the page title on the frontpage, the following snippet might help you:
add_action( 'get_header', 'pure_remove_entry_title_on_frontpage' );
function pure_remove_entry_title_on_frontpage() {
if ( is_front_page() ) {
remove_action( 'genesis_entry_header', 'genesis_do_post_title' );
}
}