Skip to content

Instantly share code, notes, and snippets.

@koko-ng
koko-ng / functions.php
Last active October 17, 2017 16:47 — forked from yratof/functions.php
ACF OEmbed with thumbnails
<?php
/* Pull apart OEmbed video link to get thumbnails out*/
function get_video_oembed_data( $video_uri ) {
//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);