- Apr 30, 2018
- 1,924
- 1,512
Hello,
I need a small help. I'm trying to display custom post taxonomy on the front-end in WordPress using this snippet:
On the front-end, it shows up as Origin: *origin name*
Now, I want to add separate CSS classes to the "Origin:" part and the "origin name" part. How do I do it?
Thank you
I need a small help. I'm trying to display custom post taxonomy on the front-end in WordPress using this snippet:
PHP:
<?php the_terms( $post->ID, 'origin', 'Origin: ', ', ', ' ' ); ?>
On the front-end, it shows up as Origin: *origin name*
Now, I want to add separate CSS classes to the "Origin:" part and the "origin name" part. How do I do it?
Thank you