Last active
December 18, 2015 16:59
-
-
Save JiveDig/5815383 to your computer and use it in GitHub Desktop.
Remove the comma from the category and tag list in Genesis
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//* 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