<?php
if ( have_posts() ) :
while ( have_posts() ) : the_post();
if ( $wp_query->current_post == 0 ) :
get_template_part( 'hero' );
endif;
endwhile;
endif;
?>
<?php
if ( have_posts() ) :
while ( have_posts() ) : the_post();
if ( $wp_query->current_post > 0 ) :
get_template_part( 'article' );
endif;
endwhile;
endif;
?>
<div class="container">
<?php
$wp_query = new WP_Query();
$wp_query->query('showposts=2&post_type=event'.'&paged='.$paged); ?>
<?php if($wp_query->have_posts()) : ?>
<div class="row">
<?php $i = 0; ?>
<?php while ($wp_query->have_posts()) : $wp_query->the_post(); ?>
<?php if($i == 2) : ?>
</div>
<div class="row">
<?php $i = 0; ?>
<?php endif; ?>
<div class="col-md-6"><?php the_title(); ?></div>
<?php $i++; ?>
<?php endwhile; ?>
</div>
<?php endif; wp_reset_query(); ?>
</div>
foreach($articles as $key => $article) {
$cssClass = $key == 0? 'first-article-class' : 'default-article-class';
echo '<div class="' . $cssClass . '">';
// Здесь контент блока
echo '</div>';
}