Obtenir la valeur d’un sous-champs.

PHP
                    <?php
if( have_rows('parent_field') ):
    while ( have_rows('parent_field') ) : the_row();
        $sub_value = get_sub_field('sub_field');
    endwhile;
endif;