在Wordpress中的每个标记之前显示图像

时间:2013-11-05 12:22:50

标签: php image wordpress tags taxonomy

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

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

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

我有可能吗?

1 个答案:

答案 0 :(得分:1)

关于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 -->