如果你的主题使用wp post class
function post_classes($classes) {
global $post;
$customMetaVariable = get_post_meta( $post->ID, \'customMetaName\', true );
if($customMetaVariable == \'desiredCustomMetaValue\'){
$classes[] = \'cssClassName\';
return $classes;
}
}
add_filter(\'post_class\', \'post_classes\');
然后是你的风格。您可以使用的css:
.cssClassName{
background-color: red;
}
因此,将该类应用于包含所需元值的所有帖子。
如果你的主题没有使用wp post类,你必须编辑主题以包括
<?php post_class(); ?>
例如:
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
//post stuff hurr
</div>
全部已解释
here.