默认的WordPress不支持WebP格式文件的,我们如今用WebP格式的还是很多的,那如何上支持上传这个格式呢?很简单,用这个一个代码。
//支持webp文件上传
function webp_filter_mime_types($array)
{
$array['webp'] = 'image/webp';
return $array;
}
add_filter('mime_types', 'webp_filter_mime_types');
//支持在后台媒体管理中显示webp文件
function webp_file_display($result, $path) {
$info = @getimagesize( $path );
if($info['mime'] == 'image/webp') {
$result = true;
}
return $result;
}
add_filter( 'file_is_displayable_image', 'webp_file_display');
WebP格式在内容中还占用比较小,提高网速。