How to replace the comma separator with | for multiple categories in blog.
I need to change from:
Cat 1, Cat 2, Cat 3
to
Cat 1 | Cat 2 | Cat 3
I am using Elementor and the default blog.
Thanks!
How to replace the comma separator with | for multiple categories in blog.
I need to change from:
Cat 1, Cat 2, Cat 3
to
Cat 1 | Cat 2 | Cat 3
I am using Elementor and the default blog.
Thanks!
Just use php replace function
<?php
echo str_replace(","," |","Cat 1, Cat 2, Cat 3");
?>
output is : Cat 1 | Cat 2 | Cat 3