Skip to content

Instantly share code, notes, and snippets.

@tjhole
Created November 6, 2013 18:14
Show Gist options
  • Save tjhole/7341214 to your computer and use it in GitHub Desktop.
Save tjhole/7341214 to your computer and use it in GitHub Desktop.
ACF: Repeater
<?php if(get_field('repeater_field_name')): ?>
<ul>
<?php while(has_sub_field('repeater_field_name')): ?>
<li>sub_field_1 = <?php the_sub_field('sub_field_1'); ?>, sub_field_2 = <?php the_sub_field('sub_field_2'); ?>, etc</li>
<?php endwhile; ?>
</ul>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment