generate_term_separator

The generate_term_separator filter allows change the default comma between each meta terms.

For example, we can use this snippet to change the separator to dash:

add_filter( 'generate_term_separator', function() {
    return '-';
} );