Skip to content

Instantly share code, notes, and snippets.

@JiveDig
Last active December 18, 2015 16:59
Show Gist options
  • Save JiveDig/5815383 to your computer and use it in GitHub Desktop.
Save JiveDig/5815383 to your computer and use it in GitHub Desktop.
Remove the comma from the category and tag list in Genesis
//* Remove the comma in the entry meta in the entry footer (requires HTML5 theme support)
add_filter( 'genesis_post_meta', 'post_meta_filter' );
function post_meta_filter($post_meta) {
$post_meta = '[post_categories sep=""] [post_tags sep=""]';
return $post_meta;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment