wordpress支持webp格式

google的webp格式相比jpg格式文件在相同质量下文件体积更小,有利于减轻服务器负载,提升访问速度,纯代码非插件实现wordpress支持webp上传和访问!
-----------------------------------------

//开启WordPress上传webp格式图片上传
function mimvp_filter_mime_types( $array ) {
$array['webp'] = 'image/webp';
return $array;
}
add_filter( 'mime_types', 'mimvp_filter_mime_types', 10, 1 );
 
//开启WordPress预览webp缩略图预览
function mimvp_file_is_displayable_image($result, $path) {
$info = @getimagesize( $path );
if($info['mime'] == 'image/webp') {
$result = true;
}
return $result;
}
add_filter( 'file_is_displayable_image', 'mimvp_file_is_displayable_image', 10, 2 );

其他案例

开启blogger默认的标签是关闭状态

vestacp自动跳转HTTPS

blogger条件判断

优化blogger在国内访问几个要点

转:在搜索引擎中注册网站

解决blogger缩略图需要科学上网的问题

Firefox必备两个工具: