检查内置计数器$wp_query->current_post
在循环内:
<?php
while( have_posts() ) :
the_post();
if( 0 == $wp_query->current_post ):
// this is the first post in the loop, output larger size, full content, etc.
else:
// output regular size, the_excerpt, etc.
endif;
endwhile;
?>