thumbnails->default ) ) {
$image_src = $video->thumbnails->default->url;
}
// 4:3 ( default - 120x90, high - 480x360, standard - 640x480 )
if ( 75 == (int) $attributes['thumb_ratio'] ) {
if ( isset( $video->thumbnails->high ) ) {
$image_src = $video->thumbnails->high->url;
}
}
// 16:9 ( medium - 320x180, maxres - 1280x720 )
if ( 56.25 == (float) $attributes['thumb_ratio'] ) {
if ( isset( $video->thumbnails->medium ) ) {
$image_src = $video->thumbnails->medium->url;
}
if ( isset( $video->thumbnails->maxres ) ) {
$image_src = $video->thumbnails->maxres->url;
}
}
?>
title, (int) $attributes['thumb_title_length'] ) ); ?>
description ) ) : ?>
description, (int) $attributes['thumb_excerpt_length'] ) ); ?>
description ) ) : ?>