SO网友:Captain S.
我认为有很多方法可以做到这一点。以下是循环模板的简单解决方案:
<?php
// set css class, if post-title is \'diamond\'
$cpt_class = (\'diamond\' === strtolower( $post->post_title ) ) ? \'post-is-diamond\' : \'\';
?>
<!-- Begin loop-template -->
<article <?php post_class( $cpt_class ); ?> id="post-<?php the_ID(); ?>">
... your stuff here ...
</article>
因此,只有当文章标题为“diamond”时,文章才有css类“post is diamond”。