How to your custom field type to repeater in wordpress code example
Example: acf repeater
<?php if( have_rows('repeater_field_name') ):
while( have_rows('repeater_field_name') ): the_row();
$image = get_sub_field('image');
endwhile;
endif; ?>