答案 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
}
希望这对您有用