how to remove add a comma to a list of category names
-
I am using this code to not display a specific category name in the category list:
<?php foreach((get_the_category()) as $category) { if ($category->cat_name != 'Featured') { echo '<a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>' . $category->name.'</a> '; } } ?>
I need to know how to add a comma after each category name but not on the last category that is listed. Any thoughts?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘how to remove add a comma to a list of category names’ is closed to new replies.