How To Use Repeater Field From Option’s Page In ACF

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.

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;