如果模板使用函数post_class()
在其中,您的帖子已经在HTML中应用了基于类别的类。在PHP中,通常如下所示:
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
例如,假设您有一个
news
, 然后,其中的帖子将具有
category-news
除其他外。它还将有标签类,如
tag-{slug}
也
因此,在CSS中,您可以简单地使用.category-news
或者不管你属于哪一类。
.category-news {
background-color: #123;
}
等等。