Sometimes you don’t need to show Category and Tag information on Home/Archive etc page. Put below simple code into your theme’s functions.php file to remove those from Home/Archive page.
/** Customize the post meta function - Crunchify Tips*/
add_filter( 'genesis_post_meta', 'crunchify_post_meta_filter' );
function crunchify_post_meta_filter($post_meta) {
if ( !is_page() && !is_home() && !is_front_page() && !is_archive()) {
$post_meta = '[post_categories before="Filed Under: "] [post_tags before="Tagged: "]';
return $post_meta;
}}
How to completely remove Entry Meta?
If you are looking to remove Entry Meta everywhere then just add below remove_action to your theme’s functions.php file and Entry Meta will be removed everywhere.
remove_action( 'genesis_entry_header', 'genesis_post_info', 12 );
Did you check this out?
How to Beautify and Integrate Bitly Shortlink on each Post in Genesis Framework?
Are you interested in more tutorials? Here is a list of all Social media tips articles and WordPress Tutorial articles.

