创建一个保存循环计数的变量。然后每次迭代都会增加这个变量。
在您的循环中,您可以检查第一篇帖子是否执行其他操作,然后检查其余帖子,例如,分配不同的css类。
// create var for count
$count = 0;
// do your loop & increment the var
if (have_posts()) : while (have_posts()) : the_post(); $count++;
if ($count === 1) :
// do code for only the first post...
endif;
// do code for the rest of your posts...
// end loop
endwhile; endif;