Advertisement
Guest User

Untitled

a guest
Feb 9th, 2023
292
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 1 0
  1. <?php if( have_rows('your_repeater_field') ):
  2.  $total = count(get_field('your_repeater_field'));
  3.  $i = 1; ?>
  4.     <div class="flex-wrap">
  5.     <?php while( have_rows('your_repeater_field') ): the_row(); ?>
  6.         Do whatever with the repeater item
  7.     <?php if ( $i % 4 == 0 && $i != $total ) {
  8.       echo '</div><div class="flex-wrap">';
  9.     } ?>
  10.     <?php $i++; endwhile; ?>
  11.     </div>
  12. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement