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 );