Advertisement
emcniece

Youtube video embed shortcode for jer

Mar 13th, 2013
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.60 KB | None | 0 0
  1. /* THEME USAGE:
  2.     [video id="dIDcs0p19OQ" width="400" height="300" class="sampleclass"]
  3. */
  4.  
  5. add_shortcode('video', 'video_func');
  6. function video_func($atts, $content) {
  7.      extract(shortcode_atts(array(
  8.         'id' => NULL,
  9.         'width' => '400',
  10.         'height' => '300',
  11.         'class' => 'video-frame',
  12.      ), $atts));
  13.      
  14.      if(!$id) return "<!-- No [video] id found -->";
  15.      $output = "<div class='vidframe $class'><iframe width='$width' height='$height' src='http://www.youtube.com/embed/$id?rel=0' frameborder='0' allowfullscreen></iframe><div class='vidframe-caption'>$content</div></div>";
  16.      return $output;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement