Code Snippet – Single item: Course

<?php
$video_url = get_field('video_url');
$audio_file = get_field('audio_file');

if ($video_url || $audio_file) {
    $embed_html = $video_url ? get_video_embed_html($video_url) : null;

    echo '<div class="grid gap-7 bg-neutral-200 py-8 px-5 max-w-full rounded-3xl mb-5">';
    echo '<h4 class="text-center" >' . get_the_title() . '</h4>';
    if ($embed_html) {
        echo $embed_html;
    }

    if ($audio_file) {
        echo '<audio controls="true" class="justify-self-center" src="' . esc_url($audio_file) . '"></audio>';
    }

    echo '</div>';
}
?>