Ez a bővítmény nem lett tesztelve a WordPress legutóbbi 3 fő kiadásával. Lehetséges, hogy már nincs karbantartva, frissítve és a használata gondot jelenthet a frissebb WordPress verziókkal.

WP Enable WebP

Leírás

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.

Telepítés

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

Vélemények

2023.01.07.
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 (az összes) vélemény olvasása

Közreműködők és fejlesztők

“WP Enable WebP” egy nyílt forráskódú szoftver. A bővítményhez a következő személyek járultak hozzá:

Közreműködők

“WP Enable WebP” fordítása a saját nyelvünkre.

Érdekeltek vagyunk a fejlesztésben?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

Változási napló

1.0

Release Date – 19 December 2018
* Initial release