AddDefaultCharset UTF-8
<?php
//Запрашиваем пять последних записей по дате
$items = new WP_Query( array( 'posts_per_page' => 5 ) );
while ($items->have_posts()) : $items->the_post();
//Особое оформление для первой записи
if($items->current_post == 0) : ?>
<div class="big-new"><?php the_title(); ?></div>
<?php if($items->post_count > 1) {
echo '<div class="right-block">';
} ?>
<?php else : ?>
<div class="new"><?php the_title(); ?></div>
<?php endif;
endwhile;
<?php if($items->post_count > 1) {
echo '</div>';
} ?>
?>
<?php
//Запрашиваем пять последних записей по дате
$items = new WP_Query( array( 'posts_per_page' => 5 ) );
while ($items->have_posts()) : $items->the_post();
//Особое оформление для первой записи
if($items->current_post == 0) : ?>
<div class="big-new"><?php the_title(); ?></div>
<?php else : ?>
<div class="new"><?php the_title(); ?></div>
<?php endif;
endwhile;
?>
что кто-то в пару кликов может все слить