To display the list of tags for my posts, I am using <?php echo get_the_term_list( $post->ID, 'option', 'Choice of: ', ' or ', '<br />' ); ?>
However, I would really like the choices to be separated by a comma, except the last one is separated with an "or"
Example use: A post is titled "iPod" and is available in different colors: "Red" "Orange" "Yellow" "Green" "Blue" "Violet"
How do I display at the bottom of the post:
Choice of: Red, Orange, Yellow, Green, Blue, or Violet
Any ideas?