Skip to content

Instantly share code, notes, and snippets.

@JiveDig
Last active December 17, 2015 05:09
Show Gist options
  • Save JiveDig/5555756 to your computer and use it in GitHub Desktop.
Save JiveDig/5555756 to your computer and use it in GitHub Desktop.
Remove titles from pages only
// 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