Loop posts only excluding first post
You don’t need separate queries, you can run multiple loops on the same query- // output first post if( have_posts() ){ the_post(); the_title(); } // output the rest of the posts… if( have_posts() ){ while( have_posts() ){ the_post(); the_title(); } } You can also use rewind_posts() to reset the current post back to 0, as … Read more