Multiple Loops Homepage?
You can use current_post within the loop to track where you are and split the loop into multiple parts: while ( have_posts() ) : the_post(); // only output content if it’s post 1 – 5 if( 5 > $wp_query->current_post ): the_title(); else : break; endif; endwhile; // do another query/loop $custom_loop = new WP_Query( $args … Read more