Lego2012
1/24/2017 - 9:32 PM

Remove post info and/or entry meta from post types

Remove post info and/or entry meta from post types

<?php
// Code goes in child theme’s functions.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' );
}

// works in all views: single and archive.

// To remove entry meta in the entry footer for posts:
add_action( 'init', 'sample_remove_entry_meta', 11 );
/**
 * Remove entry meta for posts
 *
 * @link https://gist.github.com/nathanrice/03a5871e5e5a27f22747
 */
function sample_remove_entry_meta() {
    remove_post_type_support( 'post', 'genesis-entry-meta-after-content' );
}