Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created April 11, 2017 19:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/444ec91a93ea3a92fe06814b8273e342 to your computer and use it in GitHub Desktop.
Save billerickson/444ec91a93ea3a92fe06814b8273e342 to your computer and use it in GitHub Desktop.
<?php
/**
* Remove commas from category output
*
*/
function be_dps_remove_commas_from_category_output( $output ) {
return str_replace( ',', '', $output );
}
add_filter( 'display_posts_shortcode_category_display', 'be_dps_remove_commas_from_category_output' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment