Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save idavinder/70b4adfbd6b2fed05536 to your computer and use it in GitHub Desktop.
Save idavinder/70b4adfbd6b2fed05536 to your computer and use it in GitHub Desktop.
Customize 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="Categories: "] [post_tags before="Tags: "]';
return $post_meta;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment