Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save omurphy27/b5fa629553905ce0aa07 to your computer and use it in GitHub Desktop.
Save omurphy27/b5fa629553905ce0aa07 to your computer and use it in GitHub Desktop.
Advanced Custom Fields ACF Basic Repeater Code Example.php
<?php
if( have_rows('repeater_field_name') ):
while ( have_rows('repeater_field_name') ) : the_row();
the_sub_field('sub_field_name');
endwhile;
endif;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment