Hey! If I understood you correctly you want to output the sub fields. Here would be the function to do so.
Example: outputting navigation menu links.
<?php
if (have_rows('site_menu')) :
while (have_rows('site_menu')) :
the_row(); ?>
<li>
<a href="<?= esc_url(get_sub_field('site_menu_url')) ?>">
<?= esc_html(get_sub_field('site_menu_title')) ?>
</a>
</li>
<?php endwhile;
endif;
?>
-
This reply was modified 5 months ago by beegoodb.
Yan, thank you very much – your response clarified everything I needed to know! I appreciate your help and the example code. That answered my question perfectly, so the topic can now be considered closed.
Have a great day! 😊