I want to trim the Category Name from left to right. For example the Category Name is Men | Clothing, so I want to trim Men |, that just Clothing is displayed on the page. I just found a line for trimming at the End:
<?php echo rtrim(single_cat_title('', false), 'g'); ?>
Or a line for replacing Men |, but then the output is Category: Clothing :
<?php echo str_replace("Men | ", "", get_the_archive_title()); ?>
I'm happy about any help. Thank you.