Encontre una solucion posible, pero esta bien que use query_post o debo usar wp_query o es igual
Código PHP:
<?php
query_posts('cat=3&posts_per_page=2');
if ( have_posts() )
$i = 0;
while ( have_posts() ) :
the_post();
if ( $i == 0 ) : ?>
<h1> <?php the_title(); ?> </h1>
<h2> <?php the_excerpt(); ?> </h2>
<?php
if ( has_post_thumbnail() ) {
the_post_thumbnail('category-thumb2');
}
?>
<?php endif;
if ( $i != 0 ) : ?>
<h1> <?php the_title(); ?> </h1>
<?php endif; ?>
<?php $i++; ?>
<?php
endwhile;
?>