DEV Community

Duane Doogan
Duane Doogan

Posted on

ACF Repeater with Separator

Comma separated ACF Repeater except for last row.

<?php $variable = get_sub_field('repeater_field'); ?>
<?php if ( $variable ): ?>
<?php $notLast = $variable;
      foreach ($variable as $v ): ?>
        <?php the_field('field_name', $v); if (next($notLast)) { echo ','; } ?>
<?php endforeach; ?>
<?php endif; ?>
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

AWS GenAI LIVE image

Real challenges. Real solutions. Real talk.

From technical discussions to philosophical debates, AWS and AWS Partners examine the impact and evolution of gen AI.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay