如何在Wordpress中上传webp图片?

问题描述 投票:0回答:2

Google 网页速度 提供以 webp 格式上传图像的指南。然后提高页面速度。

在 Wordpress CMS 中不接受 webp 文件。

wordpress google-pagespeed webp
2个回答
1
投票

将此代码放在 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');

-1
投票

您好,您只需要上传 .webp 图片到 wordpress 吗?不显示它们? 如果您只想上传图像,请转到 wp-config.php 并添加一行:

define('ALLOW_UNFILTERED_UPLOADS', true);

然后您可以进入媒体库并上传图像,

images can be uploaded

但是,如果您还想显示这些图像,这里有一些您可能需要使用的工具([有用的文章链接][2]),例如:缓存启用器

如有其他问题请留言。 :)

© www.soinside.com 2019 - 2024. All rights reserved.