Home › Forums › ACF PRO › YouTube Thumbnail Object with oEmbed field? › Reply To: YouTube Thumbnail Object with oEmbed field?
A more universal way would be to get the thumbnail via oEmbed API.
//second false skip ACF pre-processcing
$url = get_field('videos', false, false);
//get wp_oEmed object, not a public method. new WP_oEmbed() would also be possible
$oembed = _wp_oembed_get_object();
//get provider
$provider = $oembed->get_provider($url);
//fetch oembed data as an object
$oembed_data = $oembed->fetch( $provider, $url );
$thumbnail = $oembed_data->thumbnail_url;
$iframe = $oembed_data->html;
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.