Code Snippet – Single item: Practitioner

<?php if (have_rows('videos')):


$embeds = [];

    while (have_rows('videos')): the_row();
        $video_url = get_sub_field('video_url');
        $video_title = get_sub_field('video_title');
        $display_title = get_sub_field('display_title');

        $embed_html = get_video_embed_html($video_url, $video_title, $display_title);
        if ($embed_html) {
            $embeds[] = $embed_html;
        }
    endwhile;

    if (!empty($embeds)): ?>
        <div class="grid gap-7 bg-white p-10 rounded-3xl">
            <h2 class="mb-0">Media</h2>
            <?= implode("\n", $embeds) ?>
        </div>
    <?php endif; ?>
<?php endif; ?>