Hi all. I am a newbie to wordpress. I am trying to remove the last comma from this syntax:
<li data-tags="<?php if($terms) { foreach ($terms as $term) { echo $term->name . ','; } } ?>">
This output something like:
<li data-tags="Logo Design,Print Design,">
And I don't want the last comma.
A little help would be great.
Thank you.