// Field de campo normal
<?php the_field('') ?>


// Loop de campo repetidor

<?php if( have_rows('') ): while ( have_rows('') ) : the_row(); ?>

<!-- Sub-campos do repetidor :  /-->
<?php the_sub_field('') ?>

<?php endwhile; else : endif;?>