Advertisement
onejdc

YouTube WP Embed

Mar 24th, 2014
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. <?php
  2.     if ( has_post_thumbnail() ) {
  3.         //the_post_thumbnail();
  4.         $size = "large";
  5.         the_post_thumbnail( $size, $attr );
  6.     }
  7.     /* Youtube URL */
  8.     $youtubeurl = types_render_field("youtube-url",array("output"=>"raw"));
  9.     $youtube_id = _get_video_id($youtubeurl);
  10. ?>
  11.  
  12. <iframe width="640" height="480" src="//www.youtube.com/embed/<?=$youtube_id?>" frameborder="0" allowfullscreen></iframe>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement