Search and select videos on YouTube without leaving the page.
This ACF field type is compatible with:
- ACF 5
- ACF 4
- Copy the
acf-youtubepicker
folder into yourwp-content/plugins
folder - Activate the
YouTube Picker
plugin via the plugins admin page - Create a new field via ACF and select the
YouTube Picker
type
// how to display data
$video = get_field( 'youtube_single_video' );
if( $video ) {
echo '<h1>' . $video['title'] . '</h1>';
echo '<img src="' . $video['thumbs']['default']['url'] . '">';
}
$video = get_field('youtube_single_video');
print_r( $video );
// Output
Array
(
[title] => Rio 2016
[vid] => Z00jjc-WtZI
[url] => https://www.youtube.com/watch?v=Z00jjc-WtZI
[duration] => 00:02:23
[thumbs] => Array
(
[default] => Array
(
[url] => https://i1.ytimg.com/vi/Z00jjc-WtZI/default.jpg
[width] => 120
[height] => 90
)
[medium] => Array
(
[url] => https://i1.ytimg.com/vi/Z00jjc-WtZI/mqdefault.jpg
[width] => 320
[height] => 180
)
[high] => Array
(
[url] => https://i1.ytimg.com/vi/Z00jjc-WtZI/hqdefault.jpg
[width] => 480
[height] => 360
)
[standard] => Array
(
[url] => https://i1.ytimg.com/vi/Z00jjc-WtZI/sddefault.jpg
[width] => 640
[height] => 480
)
[maximum] => Array
(
[url] => https://i1.ytimg.com/vi/Z00jjc-WtZI/maxresdefault.jpg
[width] => 640
[height] => 480
)
)
[iframe] => <iframe src="https://www.youtube.com/embed/Z00jjc-WtZI" width="100%" height="100%" frameborder="0" allowfullscreen></iframe>
)
// how to display data
$videos = get_field( 'youtube_multiple_videos' );
if( $videos ) {
foreach( $videos as $v ) {
echo '<h1>' . $v['title'] . '</h1>';
echo '<img src="' . $v['thumbs']['default']['url'] . '">';
}
}
$videos = get_field('youtube_multiple_videos');
print_r( $videos );
// Output
Array
(
[0] => Array
(
[title] => Rio 2016
[vid] => Z00jjc-WtZI
[url] => https://www.youtube.com/watch?v=Z00jjc-WtZI
[duration] => 00:02:23
[thumbs] => Array
(
[default] => Array
(
[url] => https://i1.ytimg.com/vi/Z00jjc-WtZI/default.jpg
[width] => 120
[height] => 90
)
[medium] => Array
(
[url] => https://i1.ytimg.com/vi/Z00jjc-WtZI/mqdefault.jpg
[width] => 320
[height] => 180
)
[high] => Array
(
[url] => https://i1.ytimg.com/vi/Z00jjc-WtZI/hqdefault.jpg
[width] => 480
[height] => 360
)
[standard] => Array
(
[url] => https://i1.ytimg.com/vi/Z00jjc-WtZI/sddefault.jpg
[width] => 640
[height] => 480
)
[maximum] => Array
(
[url] => https://i1.ytimg.com/vi/Z00jjc-WtZI/maxresdefault.jpg
[width] => 640
[height] => 480
)
)
[iframe] => <iframe src="https://www.youtube.com/embed/Z00jjc-WtZI" width="100%" height="100%" frameborder="0" allowfullscreen></iframe>
)
)