Skip to content

Instantly share code, notes, and snippets.

@freezvd
Forked from nathanrice/functions.php
Last active September 7, 2015 09:26
Show Gist options
  • Save freezvd/b04d4768286c53b967ee to your computer and use it in GitHub Desktop.
Save freezvd/b04d4768286c53b967ee to your computer and use it in GitHub Desktop.
Remove entry meta for post types
<?php
add_action( 'init', 'sample_remove_entry_meta', 11 );
/**
* Remove entry meta for post types
*
* @link https://gist.github.com/nathanrice/03a5871e5e5a27f22747
*/
function sample_remove_entry_meta() {
remove_post_type_support( 'post-type', 'genesis-entry-meta-before-content' );
remove_post_type_support( 'post-type', 'genesis-entry-meta-after-content' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment