Skip to content

Instantly share code, notes, and snippets.

@ashby
Last active August 29, 2015 14:00
Show Gist options
  • Select an option

  • Save ashby/11442435 to your computer and use it in GitHub Desktop.

Select an option

Save ashby/11442435 to your computer and use it in GitHub Desktop.
ACF: Repeater Loop
<?php if(get_field('repeater_field_name')): ?>
<?php while(has_sub_field('repeater_field_name')): ?>
<?php the_sub_field('sub_field'); ?>
<?php endwhile; ?>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment