该插件尚未通过WordPress的最新3个主要版本进行测试。 当与较新版本的WordPress一起使用时,可能不再受到维护或支持,并且可能会存在兼容性问题。

WP Enable WebP

描述

This WordPress Plugin for WebP image uploads enabled WebP image uploads into the media library.

It will also add a class to the body tag for CSS selectors. This is helpful for setting background images.

Example:

selector {

background: url(‘images/example.jpg’);
}

body.supports-webp #selector {
background: url(‘images/example.webp’);
}

Use the function webpSupported() in template files to conditionally show WebP images.

Example:
if (webpSupported()) :
WebP image here
else:
Image with other fallback format here
endif;

Major features in WP Enable WebP include:

  • Enabling WebP Image uploads into the media library.
  • Browser detection that adds a class to the body tag indicating WebP is supported by the browser.
  • Helper function to use in theme template files to check if the browser supports WebP image format.

安装

Upload the “wp-enable-webp” folder to your wp-content/plugins directory, then Activate it.

评价

2023 年 1 月 7 日
Really good plugin. I now use that plugin for nearly a year. It helps to save webspace. It´s not updated for the newest WordPress version, but it still works without any problems or errors. Great work!
阅读所有7条评价

贡献者及开发者

“WP Enable WebP” 是开源软件。 以下人员对此插件做出了贡献。

贡献者

将“WP Enable WebP”翻译成您的语言。

对开发感兴趣吗?

您可以浏览代码,查看SVN仓库,或通过RSS订阅开发日志

更新日志

1.0

Release Date – 19 December 2018
* Initial release