实现可以是纯CSS,并且取决于特定的HTML标记。但是,您需要针对的类由提供the post_class()
template tag.
假设您有如下基本标记:
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="post-title">
<img ... />
<h1><?php the_title(); ?></h1>
</div>
<!-- Etc. -->
</div>
The
post_class()
模板标记将输出基于类别的类,
category-{name}
, 而且,
category-{id}
. 因此,您可以针对样式表中的任何一个:
.category-{name} .post-title img {}
或
.category-{id} .post-title img {}
当然,它将针对您的标记;但希望你能明白。