WordPress开启Webp格式文件上传

默认的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格式在内容中还占用比较小,提高网速。


【AD】丽萨主机英国VPS推荐 英国原生IP双ISP家宅主机

【AD】美国洛杉矶/香港/日本VPS推荐,回程电信CN2 GIA线路,延迟低、稳定性高、免费备份_搬瓦工