分页很容易:)-只需检索所有帖子,然后跳过第一篇。在结束时,倒回循环的开头,并输出您错过的帖子。
if( have_posts() ):
while( have_posts() ): the_post();
if( 0 == $wp_query->$current_post )
continue;
// Display all but the first post
endwhile;
//Rewind to the beginning
rewind_posts();
the_post();
//Display first post
endif;