<?php// check if the repeater field has rows of dataif( have_rows('repeater_field_name') ):
// loop through the rows of datawhile ( have_rows('repeater_field_name') ) : the_row();
// display a sub field value
the_sub_field('sub_field_name');
endwhile;
else :
// no rows foundendif;
?>