Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save idavinder/e3cb72978ef4b12eb3a8 to your computer and use it in GitHub Desktop.
Save idavinder/e3cb72978ef4b12eb3a8 to your computer and use it in GitHub Desktop.
Remove Filed Under & Tagged With in Genesis
//* Customize Entry Meta Filed Under and Tagged Under - http://www.basicwp.com/?p=268
add_filter( 'genesis_post_meta', 'ig_entry_meta_footer' );
function ig_entry_meta_footer( $post_meta ) {
$post_meta = '[post_categories before=""] [post_tags before=""]';
return $post_meta;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment