while loop to be continue in next section
What you are looking for is PHP’s modulo operator and adjust markup as necessary: <?php $i = 0; $did_hr = false; $post_args = array( ‘post_type’ => ‘Student Form’, ‘posts_per_page’ => 6 ); $post_query = new WP_Query( $post_args ); if ( $post_query->have_posts() ) : while ( $post_query->have_posts() ) : $post_query->the_post(); ?> <?php if ( $i % … Read more