Advertisement
keihead

VCPT PHP

Jul 3rd, 2013
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.68 KB | None | 0 0
  1. <?php
  2. /* Set variables and create if statement */
  3. $videotype = get_post_meta($post->ID, 'Video Type', single);
  4. $videoid = get_post_meta($post->ID, 'Video ID', single);
  5. $selected_id = get_the_ID();
  6. if ($videotype == 'vimeo') {   
  7.     echo '<iframe src="http://player.vimeo.com/video/'.$videoid.'" width="980" height="551" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>';
  8. }
  9. else if ($videotype == 'youtube') {
  10.     echo '<iframe width="980" height="551" src="http://www.youtube.com/embed/'.$videoid.'?hd=1&amp;rel=0&amp;autohide=1&amp;showinfo=0&amp;autoplay=1" frameborder="0" allowfullscreen></iframe>';
  11. }
  12. else {
  13.     echo 'Please Select a Video type.';
  14. }
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement