Very new to Wordpress and web design. I have this function for separating categories with a comma ",". But it also adds the comma after the last category. Making it look like this:
Category1, Category2, Category3,
When I want it like this:
Category1, Category2, Category3
Without the last comma behind Category3
How can I stop the function from adding the last comma?
<?php
$category_detail = get_the_category($post->ID); //$post->ID
foreach ($category_detail as $cd) {
echo $cd->cat_name . ', ';
}
?>
Regards