在 Wordpress 中的每个标签之前显示一张图片


Display an image before each tag in Wordpress

我用自定义分类法制作了自定义帖子。我现在尝试在每个自定义标签前面显示图像。

使用下面的代码,我只能在第一个标签前面看到一个图像。我希望图像在每个标签之前显示。

<?php the_terms( $post->ID, 'case_tags', '<img src="theimage" />','<br /> '); ?></div><!--end .case-tags -->

我这可能吗?

关于the_terms函数的文档-

<?php the_terms( $id, $taxonomy, $before, $sep, $after ); ?> 

看起来您提供的图像作为 before 参数,所以我只打印一次。 尝试将图像放入两次,以便针对之前和分隔参数打印图像。

<?php the_terms( $post->ID, 'case_tags', '<img src="theimage" />', '<img src="theimage" />','<br /> '); ?></div><!--end .case-tags -->