Advertisement
magruf

Webp WP

Apr 13th, 2021
1,068
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.45 KB | None | 0 0
  1. add_filter( 'wp_check_filetype_and_ext', 'wpse_file_and_ext_webp', 10, 4 );
  2. function wpse_file_and_ext_webp( $types, $file, $filename, $mimes ) {
  3.     if ( false !== strpos( $filename, '.webp' ) ) {
  4.         $types['ext'] = 'webp';
  5.         $types['type'] = 'image/webp';
  6.     }
  7.  
  8.     return $types;
  9. }
  10. add_filter( 'upload_mimes', 'wpse_mime_types_webp' );
  11. function wpse_mime_types_webp( $mimes ) {
  12.     $mimes['webp'] = 'image/webp';
  13.  
  14.   return $mimes;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement