Entonces para eso mejor es un contador.
Código PHP:
<?php
$contador = 0;
if ( have_posts() ) : while ( have_posts() ) : the_post();
$contador ++
if ($contador == 1) {
// Colocá la llamada a tu imagen grande y demás...
} else {
// Colocá tu llamada a un post normal
}
endwhile; endif;
?>
Con offset también lo podés hacer, pero te insume dos loops en vez de uno.