Advertisement
dakrizzz

[WP,Php]Youtube Random Video

Sep 8th, 2015
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.58 KB | None | 0 0
  1. add_shortcode( 'mi_rand_yt', 'rand_so_25319303' );
  2.  
  3. function rand_so_25319303( $atts, $content = null )
  4. {
  5.     $varRandom = rand(0, 2);
  6. $miSrc;
  7. if($varRandom == 0){
  8.     $miSrc = "pathToYoutube1";
  9. }
  10. elseif($varRandom == 1){
  11.         $miSrc = "pathToYoutube2";
  12. }
  13. elseif($varRandom == 2){
  14.         $miSrc = "pathToYoutube3";
  15. }
  16. $output= '<div class="wpb_video_widget wpb_content_element">
  17.         <div class="wpb_wrapper"><div class="wpb_video_wrapper"><iframe width="500" height="375" src="'.$miSrc.'" frameborder="0" allowfullscreen></iframe></div>
  18.         </div>
  19.     </div>'
  20.     ;
  21.    
  22.     return $output;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement