Здравствуйте.Есть код
foreach( $posts as $post ){
setup_postdata($post);
// формат вывода the_title() ...
?>
<?php if ($wp_query->current_post % 2==1) : ?>
<div class="col-md-5 col-lg-4">
<div class="about">
<?php the_post_thumbnail(); ?>
<h3 class="h3 about__heading"><?php the_title(); ?></h3>
<p class="about__descr"><?php the_field('intro_descr') ?></p>
</div>
</div>
<?php else: ?>
<div class="col-md-5 col-lg-4 offset-md-2 offset-lg-4">
<div class="about">
<?php the_post_thumbnail(); ?>
<h3 class="h3 about__heading"><?php the_title(); ?></h3>
<p class="about__descr"><?php the_field('intro_descr') ?></p>
</div>
</div>
<?php endif; ?>
<?
}
Не получается поменять обертку для четных и нечетных постов.Скажите пожалуйста, как правильно прописать условие?И как добавить класс css для картинки записи
<?php the_post_thumbnail(); ?>
Спасибо за ваши ответы, помощь.