Skip to content

Instantly share code, notes, and snippets.

@fieldoffice
Created November 8, 2014 18:39
Show Gist options
  • Save fieldoffice/59be3f5265818e0e5da0 to your computer and use it in GitHub Desktop.
Save fieldoffice/59be3f5265818e0e5da0 to your computer and use it in GitHub Desktop.
ACF Repeater Count
<?php if( have_rows('repeater_name') ): ?>
<?php $counter = 1; ?>
<div class="items">
<?php while( have_rows('repeater_name') ): the_row(); ?>
<div class="item item-<?php echo $counter; ?>">
<a href="<?php the_sub_field('repeater_field_01'); ?>">
<h3><?php the_sub_field('repeater_field_02'); ?></h3>
<p><?php the_sub_field('repeater_field_03'); ?></p>
</a>
</div>
<?php $counter++; ?>
<?php endwhile; ?>
</div><!-- /.items -->
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment