Te tiro un ejemplo
Código PHP:
Ver original<?php
$contador = 0;
if ( have_posts() ) : while ( have_posts() ) : the_post();
$contador ++
if ($contador == 1) {
// acá comienza el bucle que llama solo a la entrada con imagen grande
query_posts('cat=1&posts_per_page=1');
if ( have_posts() ) : while ( have_posts() ) : the_post();
?>
<div class="postGrandote">
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php the_post_thumbnail('grandotote'); ?>
</div>
<?php } else {
// Colocá tu llamada a un post normal
}
endwhile; endif;
?>
Mas o menos te da una idea? Ahora después del else tenés que construir tu bucle para colocar las entradas que no están destacadas.