Skip to content

Instantly share code, notes, and snippets.

@designhash
Last active September 29, 2016 03:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save designhash/426e1cc60a2d16c6028bace80194049f to your computer and use it in GitHub Desktop.
Save designhash/426e1cc60a2d16c6028bace80194049f to your computer and use it in GitHub Desktop.
Remove page title for one single page in Genesis Framework
add_action( 'get_header', 'remove_page_title' );
function remove_page_title() {
if ( is_page( 3 ) ) {
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