您应该能够从全局$wp\\u查询对象获取当前索引in循环。在modulo的帮助下,您可以为帖子设置一个交替的css类。
global $wp_query;
while ( have_posts() ) {
the_post();
$alignment = ( ($wp_query->current_post + 1) % 2 === 0 ) ? \'even align-right\': \'odd align-left\';
// post html markup with class="<?php echo $alignment; ?>"
}