Skip to content

Instantly share code, notes, and snippets.

@wpflippercode
Created September 9, 2017 05:04
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 wpflippercode/1c7e61d37edf22899dc1273d9ced90b9 to your computer and use it in GitHub Desktop.
Save wpflippercode/1c7e61d37edf22899dc1273d9ced90b9 to your computer and use it in GitHub Desktop.
Modify Categories & Tags Separator In the Info Window Message
add_filter('wpgmp_taxonomy_separator', 'wpgmp_taxonomy_separator',1,2 );
function wpgmp_taxonomy_separator($separtor,$map) {
$separtor = "|"; //default separator is comma (,)
return $separtor;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment