Skip to content

Instantly share code, notes, and snippets.

@whyisjake
Created December 7, 2011 03:27
Show Gist options
  • Save whyisjake/1441303 to your computer and use it in GitHub Desktop.
Save whyisjake/1441303 to your computer and use it in GitHub Desktop.
make_youtube_embed
<?php
function make_youtube_embed($width,$height) {
global $wp_query;
$big_video = get_post_custom_values('Big_Video');
?>
<iframe width="<?php echo esc_html($width); ?>" height="<?php echo esc_html($height); ?>" src="http://www.youtube.com/embed/<?php echo esc_html($big_video[0]); ?>?showinfo=0&hd=1&wmode=transparent" frameborder="0" allowfullscreen wmode="Opaque"></iframe>
<?php } ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment