Было:
<?php if (have_posts()) : while (have_posts()) : the_post();?>
<li class="slide-reviews showing-reviews">
<img src="<?php $image_url = wp_get_attachment_image_src(get_post_thumbnail_id(), 'full'); echo $image_url[0]; ?>">
<h4><?php the_title(); ?></h4>
<?php the_content(); ?>
</li>
<?php endwhile; else: ?>
<?php endif; ?>
Стало:
<?php var i=0;?>
<?php if (have_posts()) : while (have_posts()) : the_post();?>
<li class="slide-reviews <?php (i==0)?'showing-reviews':'';?>">
<img src="<?php $image_url = wp_get_attachment_image_src(get_post_thumbnail_id(), 'full'); echo $image_url[0]; ?>">
<h4><?php the_title(); ?></h4>
<?php the_content(); ?>
</li>
<?php i++; ?>
<?php endwhile; else: ?>
<?php endif; ?>
Принцип такой.