Google 网页速度 提供以 webp 格式上传图像的指南。然后提高页面速度。
在 Wordpress CMS 中不接受 webp 文件。
将此代码放在 config.php 文件的末尾。你的问题将会得到解决
//** *Enable upload for webp image files.*/
function webp_upload_mimes($existing_mimes) {
$existing_mimes['webp'] = 'image/webp';
return $existing_mimes;
}
add_filter('mime_types', 'webp_upload_mimes');