Skip to content

Instantly share code, notes, and snippets.

@davidsword
Created September 14, 2016 21:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidsword/6d2d41dee862e7f1a9984bdd885f8b81 to your computer and use it in GitHub Desktop.
Save davidsword/6d2d41dee862e7f1a9984bdd885f8b81 to your computer and use it in GitHub Desktop.
<?
function get_youtube_embed_from_url($youtube_url = '',$width = '428', $height = '206', $autostart = true) {
$autply = ($autostart) ? '&autoplay=1' : '';
parse_str( parse_url( $youtube_url, PHP_URL_QUERY ) );
$subject = '<iframe width="'.$width.'" height="'.$height.'" src="http://youtube.com/embed/'.$v.'?theme=dark&modestbranding=0&rel=0'.$autply.'" frameborder="0"></iframe>';
return $subject;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment