Support

Account

Home Forums Front-end Issues You tube in ACF field Reply To: You tube in ACF field

  • I use this code with an oEmbed field, only display the video is there’s a url 😉

    <?php 
    if (get_field('my_video')) {
    ?>
    <div class="media_embed_youtube"><?php the_field('my_video''); ?></div>
        <?php 
      } // end if value
    ?>