Advertisement
phpface

Untitled

May 5th, 2020
1,558
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. if( ! function_exists( 'videotube_filter_wp_video_extensions' ) ){
  2.     /**
  3.      * Filter default video extensions
  4.      * @param  array $exts
  5.      * @return array
  6.      */
  7.     function videotube_filter_wp_video_extensions( $exts ){
  8.  
  9.         $exts[] = 'mov';
  10.  
  11.         return $exts;
  12.     }
  13.     add_filter( 'wp_video_extensions', 'videotube_filter_wp_video_extensions',10, 1 );
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement