使命感the_post()
是什么推动了内部current_post
反其道而行之have_posts()
检查循环内的值。
记住这一点,你可以打电话the_post()
一旦跳出循环并使用您想要的任何模板标记,然后像正常一样运行循环,它将从第二篇文章开始拾取并继续。
the_post();
// this is the first post!
the_title();
// now the loop
while ( have_posts() ) :
the_post();
// starts at 2nd post
the_title();
endwhile;