PHP:
<php $categories = get_the_category();
foreach ($categories as $cat):
$catlink = get_category_link($cat);
$kate = $cat->name;
;?>
<td class="genre-list-single"><a href="<?= $catlink;?>"><i class="fad fa-caret-right"></i> <?= $separate;?></a></td>
<php endforeach;?>
how do I add a comma between category?
Thanks.
my bad, i forgot about the_category function.
Last edited: