License: GPLv2 or later
WordPress plugin to enable WebP image uploads.
| Author: | WP Academic (profile at wordpress.org) |
| WordPress version required: | 4.3 |
| WordPress version tested: | 5.2.23 |
| Plugin version: | 1.0 |
| Added to WordPress repository: | 20-12-2018 |
| Last updated: | 16-09-2019
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
|
| Rating, %: | 98 |
| Rated by: | 7 |
| Plugin URI: | https://eastsidecode.com |
| Total downloads: | 143 502 |
| Active installs: | 6 000+ |
![]() Click to start download |
|
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.
