如果不看代码,很难说如何准确地实现它。但我们的想法是使用$wp_query->current_post
在主查询中始终可用的变量。它看起来像这样:
<?php
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
global $wp_query;
if ( $wp_query->current_post === 0 ) {
// Output the first post
continue;
}
// Output post
}
}