在wordpress中打印特定帖子的类别名称

时间:2014-10-08 05:07:49

标签: php wordpress

我想打印帖子的类别名称作为类名称和输出

<figure class="testimonial-thumb gallery-item **some_category_name** "> 

当我使用像

这样的代码时
<figure class="testimonial-thumb gallery-item <?php echo the_category(','); ?> ">

但它打破了浏览器上的标签打印。请提出一些解决方案。

提前感谢。

2 个答案:

答案 0 :(得分:0)

您可以使用实体

&gt;

将显示为&gt;

答案 1 :(得分:0)

您不能用逗号分隔css类。使用空格。尝试类似:

  <figure 
    class="testimonial-thumb gallery-item <?php 
      echo the_category(' '); 
    ?>"
  >

查看:http://codex.wordpress.org/Function_Reference/the_category示例部分,了解此类非常相似的示例。