Advertisement
phpface

Untitled

Feb 12th, 2023 (edited)
1,005
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.49 KB | None | 0 0
  1. add_action( 'wp_enqueue_scripts', function(){
  2.     // Declare your request headers
  3.     $headers = array(
  4.         'foo1'      =>  'value1',
  5.         'foo2'      =>  'value2'
  6.     );
  7.  
  8.     $headers = json_encode( $headers );
  9.  
  10.     $custom_scripts = "
  11.        videojs.Hls.xhr.beforeRequest = function(options) {
  12.          options.headers = videojs.mergeOptions( {$headers}, options );
  13.          return options;
  14.        };
  15.    ";
  16.  
  17.     wp_add_inline_script( 'player', $custom_scripts );  
  18. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement