Skip to content

Instantly share code, notes, and snippets.

@yanknudtskov
Created August 24, 2017 13:22
Show Gist options
  • Save yanknudtskov/3e79a83662da76a4af9f1aa3aad04530 to your computer and use it in GitHub Desktop.
Save yanknudtskov/3e79a83662da76a4af9f1aa3aad04530 to your computer and use it in GitHub Desktop.
Getting YouTube Preview Image
<?php
function get_youtube_preview_image( $url ) {
$vars = array();
parse_str( parse_url( $url, PHP_URL_QUERY ), $vars );
return 'https://img.youtube.com/vi/'.$vars['v'].'/hqdefault.jpg';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment