Created
September 9, 2017 05:04
-
-
Save wpflippercode/1c7e61d37edf22899dc1273d9ced90b9 to your computer and use it in GitHub Desktop.
Modify Categories & Tags Separator In the Info Window Message
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
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