Good evening!
Tell me how to break the cycle into groups of 4 posts?
It is necessary that every 4 posts get a wrapper div.swiper-slide
$bcat = get_category_by_slug('blog'); $bid = $bcat->ID; $n = 12; $c = 1; $recent = new WP_Query("cat=".$id."&posts_per_page=".$n); while ($recent->have_posts()) : $recent->the_post(); get_template_part('blog-block'); wp_reset_postdata(); $c++; endwhile;