// webp upload function add_webp_upload_mime( $mimes ) { $mimes['webp'] = 'image/webp'; return $mimes; } add_filter( 'mime_types', 'add_webp_upload_mime' ); function webp_is_displayable($result, $path) { if ($result === false) { $displayable_image_types = array( IMAGETYPE_WEBP ); $info = @getimagesize( $path ); if (empty($info)) { $result = false; } elseif (!in_array($info[2], $displayab e_image_types)) { $result = false; } else { $result = true; } } return $result; } add_filter('file_is_displayable_image', 'webp_is_displayable', 10, 2); // webp preload in media function display_webp_in_media_library( $result, $path ) { if ( $result === false ) { $displayable_image_types = array( IMAGETYPE_WEBP ); $info = @getimagesize( $path ); if ( empty( $info ) ) { $result = false; } elseif ( ! in_array( $info[2], $displayable_image_types ) ) { $result = false; } else { $result = true; } } return $result; } add_filter( 'file_is_displayable_image', 'display_webp_in_media_library', 10, 2 ); Warning: Cannot modify header information - headers already sent by (output started at /home/httpd/vhosts/sfers.ch/hifistereoanlage.ch/wp-content/themes/kallyaschildtheme/functions.php:40) in /home/httpd/vhosts/sfers.ch/hifistereoanlage.ch/wp-content/plugins/woo-postfinance-checkout/woocommerce-postfinancecheckout.php on line 814 Warning: Cannot modify header information - headers already sent by (output started at /home/httpd/vhosts/sfers.ch/hifistereoanlage.ch/wp-content/themes/kallyaschildtheme/functions.php:40) in /home/httpd/vhosts/sfers.ch/hifistereoanlage.ch/wp-includes/pluggable.php on line 1435 Warning: Cannot modify header information - headers already sent by (output started at /home/httpd/vhosts/sfers.ch/hifistereoanlage.ch/wp-content/themes/kallyaschildtheme/functions.php:40) in /home/httpd/vhosts/sfers.ch/hifistereoanlage.ch/wp-includes/pluggable.php on line 1438