Skip to content

Instantly share code, notes, and snippets.

@cdils
Created May 26, 2014 17:09
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 cdils/b34fb69ee7bc1047f3ef to your computer and use it in GitHub Desktop.
Save cdils/b34fb69ee7bc1047f3ef to your computer and use it in GitHub Desktop.
Remove post info and post meta from some custom post type pages.
<?php //remove this entire line with opening tag
//Remove post info and post meta on custom post types
add_action ( 'get_header', 'cd_remove_post_details');
function cd_remove_post_details() {
if ( is_singular( array( 'press', 'filmmaker' ) ) ) {
remove_action ( 'genesis_entry_header', 'genesis_post_info', 12 );
remove_action ( 'genesis_entry_footer', 'genesis_post_meta' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment