Skip to content

Instantly share code, notes, and snippets.

@yanknudtskov
Last active June 18, 2018 06:24
Show Gist options
  • Save yanknudtskov/f9c6e7554f5004a1868ab3e9c7510e18 to your computer and use it in GitHub Desktop.
Save yanknudtskov/f9c6e7554f5004a1868ab3e9c7510e18 to your computer and use it in GitHub Desktop.
Getting YouTube Preview Image #youtube
<?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