Skip to content

Instantly share code, notes, and snippets.

@ajithrn
Last active August 29, 2015 14:22
Show Gist options
  • Save ajithrn/bf31129794ac283c898b to your computer and use it in GitHub Desktop.
Save ajithrn/bf31129794ac283c898b to your computer and use it in GitHub Desktop.
WordPress: ACF Repeater
<?php if( have_rows('repeater_field_name') ): // check if the repeater field has rows of data ?>
<?php while ( have_rows('repeater_field_name') ) : the_row(); // loop through the rows of data ?>
<?php $foo = get_sub_field('sub_field_name'); // getting a sub field value ?>
<?php endwhile; ?>
<?php else: // no rows found ?>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment