Last active
December 22, 2015 19:59
-
-
Save michaelcarwile/6523093 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//* don't copy above php tag | |
//* xhtml | |
remove_action( 'genesis_post_title', 'genesis_do_post_title' ); | |
//* html5 | |
remove_action( 'genesis_entry_header', 'genesis_do_post_title' ); | |
//* Remove home page title (XHTML Version) | |
add_action('get_header', 'remove_home_title'); | |
function remove_home_title() { | |
if (is_front_page()) { | |
remove_action( 'genesis_post_title', 'genesis_do_post_title' ); | |
} | |
} | |
//* Remove home page title (HTML5 Version) | |
add_action('get_header', 'remove_home_title'); | |
function remove_home_title() { | |
if (is_front_page()) { | |
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