Title: WP Performance
Author: Ante Laća
Published: <strong>28, Avientu de 2018</strong>
Last modified: 19, Agostu de 2026

---

Guetar plugins

![](https://ps.w.org/wp-performance/assets/banner-772x250.png?rev=3654589)

![](https://ps.w.org/wp-performance/assets/icon.svg?rev=3654589)

# WP Performance

 By [Ante Laća](https://profiles.wordpress.org/alaca/)

[Download](https://downloads.wordpress.org/plugin/wp-performance.2.0.0.zip)

 * [Details](https://ast.wordpress.org/plugins/wp-performance/#description)
 * [Reviews](https://ast.wordpress.org/plugins/wp-performance/#reviews)
 *  [Installation](https://ast.wordpress.org/plugins/wp-performance/#installation)
 * [Development](https://ast.wordpress.org/plugins/wp-performance/#developers)

 [Support](https://wordpress.org/support/plugin/wp-performance/)

## Description

WP Performance makes your WordPress site load faster without the headache. Turn 
on a few options and the plugin handles caching, asset optimization, and image delivery
for you.

Not sure where to start? Open the **Overview** tab and pick a one-click preset (
Safe, Balanced, or Aggressive). You can fine-tune anything afterwards.

Version 2.0 is a complete rebuild with a fast new dashboard and no third-party dependencies.
Everything below works together out of the box.

### Caching

 * **Page cache** – serves a static HTML copy of each page, before WordPress even
   loads
 * **Block cache** – cache just the slow parts of a page, even on pages you can’t
   fully cache (more below)
 * **Cache preloading** – warm the cache from your sitemap
 * **Browser caching** – tells browsers to keep files so repeat visits are instant
 * **GZIP compression** – sends smaller files to the browser
 * **Object cache** – optional Redis drop-in to cut database load
 * **Smart by default** – skips logged-in users and WooCommerce/EDD cart pages, 
   and ignores tracking parameters (utm, gclid, fbclid) so clean URLs share one 
   cache
 * **Mobile cache** – keep a separate copy for mobile devices when you need it

### CSS

 * Minify CSS (inline and files)
 * Combine CSS files
 * Load CSS without blocking the page
 * Remove unused CSS, per page
 * Critical CSS
 * Combine Google Fonts, or host them on your own server
 * Control font loading (font-display)
 * DNS prefetch and preconnect hints

### JavaScript

 * Minify JavaScript (inline and files)
 * Combine JavaScript files
 * Defer JavaScript
 * Delay JavaScript until the visitor interacts (great for third-party scripts)
 * Disable scripts you don’t need, site-wide or per page

### HTML

 * Minify HTML
 * Remove comments and unneeded markup

### Images and media

 * Lazy load images and videos (uses native browser lazy loading)
 * Responsive images
 * Add missing width and height to stop layout shift (better CLS)
 * Preload your largest image and set fetchpriority for a faster LCP
 * Convert images to WebP and AVIF
 * Custom image sizes and one-click thumbnail regeneration
 * Disable emojis and embeds

### Database

 * Clean up revisions, auto-drafts, trash, spam, transients, and stale cron tasks
 * Schedule cleanups daily, weekly, or monthly

### CDN

 * Rewrite asset URLs to your CDN, with exclusions

### Tools

 * **Overview dashboard** with environment health checks
 * **One-click presets** – Safe, Balanced, Aggressive
 * **Restore points** – roll back to your last five saved configurations
 * **Troubleshooting log** with a live viewer
 * **Export and import** your settings
 * **Per-page exclusions** from the post editor
 * **WP-CLI** commands
 * **Multisite** support

### Block cache

Block cache stores the rendered output of a section of a page and reuses it, even
on pages that are not fully cached (like logged-in or dynamic pages). Use it three
ways:

 1. **Cache block** – add the “Cache” block in the editor and put any blocks inside
    it
 2. **Shortcode** – `[wpp_cache ttl="600"]...[/wpp_cache]`
 3. **PHP** – in a template:
 4. if ( wpp_cache_start( ‘sidebar’, [ ‘ttl’ => 3600 ] ) ) { expensive_render(); wpp_cache_end();}

You choose how long to cache and whether to keep a separate copy per page, per device,
per role, or for logged-in visitors.

### Add-ons

 * **Cloudflare** – purge cache and control Cloudflare settings
 * **Varnish** – auto-purge Varnish cache
 * **Prefetch** – prefetch links on hover for instant navigation

### WP-CLI

 * `wp wpp flush` – clear the page cache
 * `wp wpp flush-blocks` – clear the block cache
 * `wp wpp enable` – enable WP Performance
 * `wp wpp disable` – temporarily disable WP Performance
 * `wp wpp cleanup [<type>]` – run a database cleanup (all, trash, spam, revisions,
   autodrafts, transients, cron)

### Languages

 * English
 * Hrvatski (Croatian)

### Report bugs

Found a bug? Please open an issue on [GitHub](https://github.com/alaca/WP-Performance).

## Screenshots

[⌊Overview dashboard with presets and health checks⌉⌊Overview dashboard with presets
and health checks⌉[

Overview dashboard with presets and health checks

[⌊Page cache settings⌉⌊Page cache settings⌉[

Page cache settings

[⌊Image and media optimization⌉⌊Image and media optimization⌉[

Image and media optimization

[⌊Database cleanup⌉⌊Database cleanup⌉[

Database cleanup

[⌊Settings, restore points, and the troubleshooting log⌉⌊Settings, restore points,
and the troubleshooting log⌉[

Settings, restore points, and the troubleshooting log

## Blocks

This plugin provides 1 block.

 *   Wpp Cache

## Installation

 1. Upload the “wp-performance” folder to “/wp-content/plugins/”
 2. Activate the plugin from the Plugins menu in WordPress
 3. Open WP Performance and apply a preset from the Overview tab, or turn on the options
    you want

If you already used an older version, your existing settings are migrated automatically.

## FAQ

### Where do I start?

Open the Overview tab and apply a preset. Safe is risk-free, Balanced suits most
sites, and Aggressive turns everything on (test your site afterwards).

### What is the block cache for?

It caches just one section of a page. That is useful on pages you can’t fully cache,
like a logged-in dashboard, where one part (a menu, a product grid) is still expensive
to build every time.

### Does it work with Nginx?

Yes. WP Performance generates the Nginx rules for you and shows them under Settings.
Copy them into your server config and reload Nginx.

### Does it support Multisite?

Yes.

### Do I need Redis?

No. Redis is optional. If it is available, you can enable the object cache for an
extra speed boost; everything else works without it.

### Where can I get help?

Use the [wordpress.org support forum](https://wordpress.org/support/plugin/wp-performance),
or open an issue on [GitHub](https://github.com/alaca/WP-Performance).

## Reviews

![](https://secure.gravatar.com/avatar/698bbdf8465d26fb7054b19aa2e8663c52a1fa4e8b9363a13700c101a210066d?
s=60&d=retro&r=g)

### 󠀁[Solid cache plugin](https://wordpress.org/support/topic/solid-cache-plugin/)󠁿

 [treeflips](https://profiles.wordpress.org/treeflips/) 1, Avientu de 2020

Great speed, beautifully simple UI. Can do basic caching or even more advanced caching.
Most of all, it worked well for my use. I’m typically a LiteSpeed Cache and Swift
user…but really enjoyed this one. Thanks for such a great free cache plugin.

![](https://secure.gravatar.com/avatar/af8617e094602d94c8be2efad6cd790a6f63ef67b76575e743f995427bcab8be?
s=60&d=retro&r=g)

### 󠀁[Great page caching plugin](https://wordpress.org/support/topic/great-page-caching-plugin/)󠁿

 [Nawawi Jamili](https://profiles.wordpress.org/nawawijamili/) 8, Payares de 2020

Thank you for your great work. I have got a great experience while using it.

![](https://secure.gravatar.com/avatar/9dd0c484166b073b872b3f2548a3cc89f86555729a93c1981e4a75ac9a05a3a4?
s=60&d=retro&r=g)

### 󠀁[I Don’t Know](https://wordpress.org/support/topic/i-dont-know-8/)󠁿

 [Stephanie](https://profiles.wordpress.org/icysteph/) 8, Agostu de 2020 1 reply

I want to say that it worked but my site still feel the same and I’ve activated 
the essentials so I don’t know what to say. If I can get a reply back from the developer,
that’ll be nice. It says CSS not found and Javascript not found.

![](https://secure.gravatar.com/avatar/9d96514afcff531c0481485e2617c870afccfb5a8891a784d85327987006fcaa?
s=60&d=retro&r=g)

### 󠀁[Best Caching Plugin](https://wordpress.org/support/topic/best-caching-plugin-29/)󠁿

 [Ratan](https://profiles.wordpress.org/ratanmia/) 30, Xunetu de 2020

This is the best caching plugin I ever tested. Simple but powerfull.

![](https://secure.gravatar.com/avatar/3d760b6cb4a8cadd7dc78d707163456d66b47bf7541a94c3b52747d8d22eeb43?
s=60&d=retro&r=g)

### 󠀁[Best plugin on this category, and the amazing thing is it is free](https://wordpress.org/support/topic/best-plugin-on-this-category-and-the-amazing-thing-is-it-is-free/)󠁿

 [froughtz](https://profiles.wordpress.org/froughtz/) 9, Marzu de 2020

I wanna thank the developer of this plugin really, it is better than every site 
speed optimize plugin that I’ve used, and the best thing about it, is it is COMPLETELY
FREE

![](https://secure.gravatar.com/avatar/d617382c6bce19a98694f55027f71312b151319fbb442a4bc5da1bc82ca3bae4?
s=60&d=retro&r=g)

### 󠀁[Amazing plugin](https://wordpress.org/support/topic/amazing-plugin-1387/)󠁿

 [ThomDJ](https://profiles.wordpress.org/thomdj/) 19, Febreru de 2020 2 replies

I’ve tried all caching and minifying plugins available on WordPress.org and CodeCanyon.
WP-Performance is easily my favorite. Can’t recommend it enough.

 [ Read all 28 reviews ](https://wordpress.org/support/plugin/wp-performance/reviews/)

## Contributors & Developers

“WP Performance” is open source software. The following people have contributed 
to this plugin.

Contributors

 *   [ Ante Laća ](https://profiles.wordpress.org/alaca/)

[Translate “WP Performance” into your language.](https://translate.wordpress.org/projects/wp-plugins/wp-performance)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/wp-performance/), check
out the [SVN repository](https://plugins.svn.wordpress.org/wp-performance/), or 
subscribe to the [development log](https://plugins.trac.wordpress.org/log/wp-performance/)
by [RSS](https://plugins.trac.wordpress.org/log/wp-performance/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 2.0.0

A complete rebuild with a new dashboard and many new features.
 [NEW] Overview dashboard
with environment health checks [NEW] One-click presets (Safe, Balanced, Aggressive)[
NEW] Block cache – cache parts of a page via the Cache block, the [wpp_cache] shortcode,
or wpp_cache_start() [NEW] Delay JavaScript until the visitor interacts [NEW] Remove
unused CSS, per page [NEW] Host Google Fonts locally [NEW] Convert images to WebP
and AVIF [NEW] Preload the LCP image and set fetchpriority [NEW] Add missing image
width and height to reduce layout shift [NEW] Redis object cache drop-in [UPDATE]
Rebuilt the cache engine, asset optimizer, and CSS/JS/HTML minifiers from scratch,
with no third-party dependencies [UPDATE] New React dashboard [UPDATE] Existing 
settings are migrated automatically on update [REMOVED] AMP support

#### 1.1.8.3

[FIX] Cloudflare add-on – respect existing headers

For the full history of older releases, see [changelog.txt](https://plugins.svn.wordpress.org/wp-performance/trunk/changelog.txt).

## Meta

 *  Version **2.0.0**
 *  Last updated **2 selmanes ago**
 *  Active installations **200+**
 *  WordPress version ** 6.9 or higher **
 *  Tested up to **7.0.4**
 *  PHP version ** 8.1 or higher **
 *  Language
 * [English (US)](https://wordpress.org/plugins/wp-performance/)
 * Tags
 * [cache](https://ast.wordpress.org/plugins/tags/cache/)[core web vitals](https://ast.wordpress.org/plugins/tags/core-web-vitals/)
   [optimization](https://ast.wordpress.org/plugins/tags/optimization/)[Page Speed](https://ast.wordpress.org/plugins/tags/page-speed/)
   [performance](https://ast.wordpress.org/plugins/tags/performance/)
 *  [Advanced View](https://ast.wordpress.org/plugins/wp-performance/advanced/)

## Ratings

 4.9 out of 5 stars.

 *  [  26 5-star reviews     ](https://wordpress.org/support/plugin/wp-performance/reviews/?filter=5)
 *  [  0 4-star reviews     ](https://wordpress.org/support/plugin/wp-performance/reviews/?filter=4)
 *  [  2 3-star reviews     ](https://wordpress.org/support/plugin/wp-performance/reviews/?filter=3)
 *  [  0 2-star reviews     ](https://wordpress.org/support/plugin/wp-performance/reviews/?filter=2)
 *  [  0 1-star reviews     ](https://wordpress.org/support/plugin/wp-performance/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/wp-performance/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/wp-performance/reviews/)

## Contributors

 *   [ Ante Laća ](https://profiles.wordpress.org/alaca/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/wp-performance/)

## Donate

Would you like to support the advancement of this plugin?

 [ Donate to this plugin ](https://profiles.wordpress.org/alaca)