Hello, i am building gallery with repeater field and i want for first 5 rows to have special layout ( lets say 4 colums in bootstrap grid ) while others have 3 colums
if (have_rows('repeater')) {
$count = 0;
while (have_rows('repeater')) {
the_row();
$class = 'col-4';
if ($count < 3) {
$class = 'col-3';
}
?><div class="<?php echo $class; ?>">content here</div><?php
$count++;
}
}