Looking to use a repeater field from the options page in Advanced Custom Fields? You should use this PHP function in order to loop through the results.
1 answers
1
Looking through repeater fields from the ACF option's page
To loop through a repeater field from the options page, use the code below to display the results.
while ( have_rows( 'example_repeater_field', 'options' ) ) : the_row(); the_sub_field( 'example_sub_field' ); endwhile;
— Support WizardAnswer 1