I have made custom posts with custom taxonomies. I am now trying to display an image in front of every custom tag.
With the code below I can only se an image in front of the first tag. I'd like the image to show before every tag.
<?php the_terms( $post->ID, 'case_tags', '<img src="theimage" />','<br /> '); ?></div><!--end .case-tags -->
I this possible?