检查帖子是否属于特定类别以显示图标

时间:2013-11-26 作者:Desolator

我有多个类别,我们把它们称为Group1(imp1、imp2、imp3)和group2(cat1、cat2、cat3、cat4)。

我的帖子分为第一组中的一个类别和第二组中的多个类别。

我想在帖子缩略图的角落显示一个小图标,如果帖子来自imp1, 或者,如果帖子来自imp2 等等

1 个回复
SO网友:Chip Bennett

添加post_class() 至邮政集装箱部门:

<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    <!-- post markup here -->
</div>
。。。在其他课程中,这将为您提供:

  • .category-{ID}
  • .category-{slug}
然后,您可以通过CSS针对这些类添加特定于类别的图标。

结束

相关推荐

Get_the_Categories筛选器返回空数组

我正在开发一个主题,使用get_the_category_list() 函数(在category template.php中)。通过检查其代码,此函数调用get_the_category() 函数(位于category template.php中),该函数应用get_the_categories 末端过滤器:return apply_filters( \'get_the_categories\', $categories ); 出于某种奇怪的原因,此过滤器返回一个空数组。如果我将此行替换为:re