从管理员端上载webp图片-Wordpress

时间:2019-01-04 08:16:53

标签: wordpress webp

enter image description here 我将未过滤的上载添加到wp-config,但仍不上载webp。但是它适用于其他文件,例如gif,rar.zip

2 个答案:

答案 0 :(得分:0)

尝试使用此功能

function webp_upload_mimes( $existing_mimes ) {
// add webp to the list of mime types
$existing_mimes['webp'] = 'image/webp';
// return the array back to the function with our added mime type
return $existing_mimes;
}
add_filter( 'mime_types', 'webp_upload_mimes' );

答案 1 :(得分:0)

您需要在上传中添加mime类型,可以使用以下功能来实现。

        add_filter( 'mime_types', 'webp_upload_mimes' ); 
        function webp_file_upload( $mimes ) 
        {
            $mimes['webp'] = 'image/webp'; // add webp in mime type
            return $mimes; // return the mime types
        }

希望这对您有用