Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Customize Entry Meta (Filed Under and Tagged Under)
// Customize Entry Meta Filed Under and Tagged Under
add_filter( 'genesis_post_meta', 'sleek_pro_meta_footer' );
function sleek_pro_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