How to Enable WebP in WordPress (Without Heavy Plugins)

📅 June 18, 2026 ⏱️ 8 min read 🏷️ WordPress · WebP

WebP can cut your image weight by 25–50% compared to JPG, with no perceptible visual difference. On a WordPress page with 20 images, that could mean the difference between a 2-second LCP and a 3.5-second one. Google notices. So do your visitors.

Table of contents

  1. Which WordPress version supports WebP?
  2. Method 1: Upload WebP directly (no plugin)
  3. Method 2: Automatic optimization plugin
  4. Method 3: CDN with automatic conversion
  5. How to verify your images are serving WebP
  6. Frequently asked questions

Which WordPress version supports WebP?

Since WordPress 5.8 (July 2021), the WordPress core accepts uploading .webp files directly to the media library. You don't need any plugin to upload and display WebP images. What you do need to decide is how to convert your existing images and new ones going forward.

If you're running WordPress 5.8 or later (almost certainly yes), you can upload WebP files today. The only extra step is having your images in WebP format before uploading.

Method 1: Upload WebP directly (no plugin)

Manual conversion before uploading

Easiest

The most straightforward approach: convert your images to WebP before uploading to WordPress. Zero plugins, zero configuration.

  1. Prepare your images in JPG or PNG format.
  2. Convert them to WebP using ComprimirPro (free, in-browser, no file uploads).
  3. Upload the .webp file directly to the WordPress media library.
  4. Use it in your post or page as you would any other image.

Advantage: full control, no plugin dependencies. Disadvantage: you need to convert manually for each image.

Convert your images to WebP for free

Drag your JPG or PNG files, select WebP as the output format, and download. No sign-up, no file uploads to any server.

⚡ Convert to WebP now

Method 2: Automatic optimization plugin

Plugin that converts on upload

Recommended

If you upload images regularly, a plugin that automatically converts to WebP on upload is the most practical solution. Conversion happens on the server or in the cloud depending on the plugin.

🔵 Imagify

Converts to WebP automatically. Free plan up to 20 MB/month. Very easy to configure. Keeps the original JPG as a fallback.

🟢 ShortPixel

100 free credits per month. Excellent compression quality. Converts both new and existing images in bulk.

🟡 Smush

Free plan available. Lossless compression and WebP conversion. Integrates with WP Offload Media.

🔴 EWWW Image Optimizer

Local processing option: converts on your server without sending images to external APIs. Best for hosts with libwebp-enabled PHP.

How fallback delivery works

Good WebP plugins don't replace your original JPG — they complement it. They serve WebP to compatible browsers (Chrome, Firefox, Edge, Safari) and the original JPG to those that don't support it (Outlook, some bots). This is done with the <picture> element:

<picture>
  <source srcset="image.webp" type="image/webp">
  <img src="image.jpg" alt="Description">
</picture>

Method 3: CDN with automatic conversion

CDN that transforms in real time

Most powerful

Some CDNs convert your images to WebP on-the-fly based on the user's browser, without you touching anything in WordPress. It's the most scalable solution.

How to verify your images are serving WebP

  1. Open Chrome DevTools (F12) → Network tab → filter by Img.
  2. Reload the page.
  3. Click on any image and look at the Type field in the response column. It should show webp.

You can also use PageSpeed Insights or GTmetrix — if you're still serving JPG when you could serve WebP, it will appear as the recommendation "Serve images in next-gen formats."

Frequently asked questions

Does WebP affect SEO?

Positively. Google uses load speed (LCP in particular) as a ranking factor. Lighter WebP images reduce LCP. PageSpeed Insights also penalizes sites that don't use modern formats.

Will I lose my original JPG files after converting?

Good plugins keep the original JPG intact and only add the WebP version as an alternative. They never delete your original files unless you explicitly configure them to do so.

Do I need to reconvert all my old images?

Most plugins have a bulk optimization feature that processes all images in your media library at once. You can do it in a matter of minutes regardless of how many images you have.

Related articles

ComprimirPro Team

Specialists in image optimization and web performance. We share practical guides to make the web faster.

Ready to convert your images to WebP?

Free, instant, private. No sign-up needed.

⚡ Convert to WebP now