Advertisement
phpface

Untitled

Jun 27th, 2023
975
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. /**
  2.  *
  3.  * Return YouTube player directly instead of relying on the VideoJS player,
  4.  *
  5.  */
  6. add_filter( 'streamtube/player/file/output', function( $player, $setup, $source ){
  7.  
  8.     if( $setup['sources'][0]['type'] == 'video/youtube' ){
  9.         $player = wp_oembed_get( $source );
  10.     }
  11.  
  12.     return $player;
  13.  
  14. }, 1,3 );
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement