Last active
December 17, 2015 05:09
-
-
Save JiveDig/5555756 to your computer and use it in GitHub Desktop.
Remove titles from pages only
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
// Remove titles from pages only | |
add_action('get_header', 'child_remove_page_titles'); | |
function child_remove_page_titles() { | |
$pages=array(); | |
if (is_page($pages)) { | |
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