Skip to content

Snippet: Change The Comma in Term/Categories Lists

add_filter( 'wpex_list_post_terms', function( $terms ) {
	$terms = str_replace( ',', ' · ', $terms );
	return $terms;
} );
All PHP snippets should be added via child theme's functions.php file or via a plugin. We recommend Code Snippets (100% Free) or WPCode (sponsored)
Back To Top