Created
November 8, 2014 18:39
-
-
Save fieldoffice/59be3f5265818e0e5da0 to your computer and use it in GitHub Desktop.
ACF Repeater Count
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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