How to Optimize CSS Delivery in WordPress

If Google PageSpeed Insights or Lighthouse has flagged your site with an “optimize CSS delivery” or “eliminate render-blocking resources” warning, this guide explains exactly what that means and how to fix it, including a free plugin setting that does it for you.

Google PageSpeed Insights render blocking requests warning

TL;DR: “Optimize CSS delivery” means your browser has to fully download and process CSS files before it can show anything on the page, which delays what visitors see. You can fix this for free with Berq Used CSS’s “Load after interaction” setting, which delays loading your original stylesheets until a visitor scrolls or clicks. If you already run BerqWP, this is handled for you automatically, no extra plugin needed.

What “Optimize CSS Delivery” Actually Means

By default, browsers treat every stylesheet linked in a page’s HTML as something they must download and process before rendering anything at all. This is a safety behavior, the browser doesn’t want to show you an unstyled, broken-looking page, so it waits. The problem is that most WordPress themes and plugins load far more CSS than any single page actually needs, and the browser still has to process all of it before showing a single pixel.

“Optimize CSS delivery” is Google’s way of saying: stop making visitors wait on CSS they don’t need yet.

Why This Warning Shows Up So Often on WordPress Sites

WordPress doesn’t load CSS selectively by default. A typical WordPress page loads CSS from the active theme, every active plugin that adds styling (page builders, sliders, contact forms, WooCommerce, and similar), and any custom CSS added through the Customizer or a child theme. Almost none of this is scoped to “only what this specific page needs,” it’s loaded everywhere, on every page, regardless of whether that page actually uses it.

This is related to, but distinct from, the separate “unused CSS” warning (see How to Remove Unused CSS in WordPress for that specific fix). A stylesheet can be 100% necessary for the page and still block rendering if it’s not delivered correctly, unused CSS and render-blocking CSS are two different problems that happen to share a root cause.

How to Check If This Is Affecting Your Site

Run your page through PageSpeed Insights. If “Eliminate render-blocking resources” or “Optimize CSS delivery” shows up under opportunities, with one or more of your theme’s or plugins’ stylesheets listed underneath it, this is what’s slowing down your first render.

How to Fix It for Free With Berq Used CSS

Berq Used CSS is a free WordPress.org plugin built to address exactly this.

Berq Used CSS plugin WordPress repository page

After installing and activating it, go to its settings and set the stylesheet loading mode to Load after interaction. This delays loading your page’s original stylesheets until the visitor scrolls or clicks something, so the browser isn’t stuck processing every stylesheet before it can render the page.

Load after user interaction setting

This works alongside the plugin’s main feature (trimming each page down to only the CSS it actually uses), but the “Load after interaction” mode is the specific setting that addresses render-blocking, since it controls when the original stylesheets load, not just how much of them load. The plugin needs no account, no signup, and runs entirely on your own server. Re-run PageSpeed Insights afterward to confirm the warning clears.

If You Already Use BerqWP, This Is Handled Automatically

If you’re running BerqWP, you don’t need to install Berq Used CSS or manage this setting yourself. On Local Optimization, the free, self-hosted version of BerqWP, Smart and Blaze Optimization Modes already load CSS asynchronously, so the browser doesn’t have to fully process every stylesheet before rendering the page. Turbo mode goes further, delaying both CSS and JavaScript for the best PageSpeed scores. You can switch modes from the BerqWP dashboard, and changing modes automatically flushes the cache so the new setting takes effect right away.

On BerqWP Premium, this is replaced with something more thorough: Critical CSS generation, which inlines exactly the CSS each page needs to render immediately instead of just delaying the rest. This is the same critical CSS engine behind BerqWP’s free critical CSS generator tool, if you want to see what real critical CSS output looks like for any URL before deciding whether to automate it.

How to Remove Unused CSS in WordPress

If you’ve run your site through Google PageSpeed Insights or Lighthouse and seen a warning that says “Remove unused CSS,” you’ve found one of the most common reasons WordPress sites load slower than they should. This guide explains what unused CSS actually is, why WordPress sites are especially prone to it, and how to fix it, including a free plugin that does it automatically.

TL;DR: WordPress themes and plugins load CSS for features a given page doesn’t use, which is what triggers the “Remove unused CSS” PageSpeed warning. You can check the damage with Chrome DevTools’ Coverage tab, but fixing it across a whole site by hand isn’t realistic. Berq Used CSS, a free WordPress.org plugin, automates this for sites that don’t have BerqWP. If you already run BerqWP, this is handled for you automatically, no extra plugin needed.

What Unused CSS Actually Means

Every stylesheet your site loads contains a set of rules: instructions for how different elements should look. “Unused CSS” is the portion of that stylesheet your browser downloads and processes but never actually applies to the page you’re looking at, because the elements those rules describe aren’t on that particular page.

The browser still has to download the full file, parse every rule in it, and figure out which ones apply, before it can finish rendering anything. The bigger that file is, the longer that takes. PageSpeed Insights flags this because it’s a direct, measurable drag on how fast your page becomes visible and usable.

Why WordPress Sites Are Especially Prone to This

WordPress themes and plugins tend to load CSS for every feature they’re capable of, on every page, whether that page uses the feature or not. A theme that supports sliders, mega menus, pop-ups, and contact forms loads styling for all of it on your simple blog post too, even if that post has none of those elements. Page builders like Elementor and Divi add their own layer of CSS on top, often loading styles for every block type available in the builder rather than just the ones used on a given page.

None of this is a bug. It’s just how WordPress plugins and themes are built to work everywhere, for everyone, by default. The tradeoff is that almost every WordPress page ends up loading CSS it never uses.

How to Check If This Is Slowing Down Your Site

The fastest way to confirm it is to run your page through PageSpeed Insights. If “Remove unused CSS” or “Reduce unused CSS” shows up under opportunities, it’s affecting your score. For a closer look at exactly which rules are unused, Chrome’s DevTools has a built in Coverage tab (open DevTools, go to the three-dot menu, More tools, then Coverage) that shows you a live breakdown of how much of each loaded CSS file is actually being used on the page you’re viewing.

Doing this manually, page by page, across an entire WordPress site is realistic for a single landing page but not practical for a site with dozens or hundreds of pages, especially since the unused portion changes from page to page depending on what each one actually contains.

How to Remove Unused CSS in WordPress Automatically

This is where a tool built specifically for this problem helps. Berq Used CSS is a free WordPress plugin that automates the process described above across your entire site.

Berq Used CSS plugin WordPress org page

Here’s how it works: the first time a visitor loads a page, the plugin analyzes the CSS that page actually renders and builds a trimmed version containing only the rules that page uses. From that point on, every visitor to that page gets the smaller file instead of the full stylesheet. You don’t need an account, there’s no sign up, and no data is sent to an external server, the whole process runs on your own site.

You get to choose how the original stylesheets are handled once the trimmed CSS is ready, through three modes:

  • Keep originals loads the trimmed CSS first so the page renders fast, while still loading the original stylesheets normally afterward. This is the safest starting point.
  • Load after interaction delays the original stylesheets until the visitor scrolls or clicks something, which pushes the speed benefit further for visitors who don’t interact right away.
  • Remove completely drops the original stylesheets entirely and relies only on the generated used CSS. This gives you the maximum speed improvement, but it’s worth using only once you’ve confirmed the generated CSS actually covers everything your pages need, since anything genuinely missing from the trimmed version won’t load at all in this mode.

Berq Used CSS works with any WordPress theme or page builder, including Elementor, Divi, WPBakery, Gutenberg, and WooCommerce, without needing any configuration to recognize them. It also runs fine alongside cache plugins you may already have installed, including WP Rocket, LiteSpeed Cache, W3 Total Cache, WP Super Cache, SiteGround Optimizer, and Nginx Helper. If you update a plugin, switch themes, or change something in the Customizer, the plugin clears and regenerates the saved CSS automatically, so you’re not left with stale, broken styling after a change.

If You Already Use BerqWP, You Don’t Need This Plugin

Berq Used CSS is built for sites that don’t have BerqWP installed. If you’re already running BerqWP, this is handled for you automatically and you don’t need to add Berq Used CSS on top.

On Local Optimization, the free, self-hosted version of BerqWP, the plugin strips unused CSS from each page on its own, using the same kind of approach described above. On BerqWP Premium, this is replaced with something more thorough: full per-page critical CSS generation, which inlines exactly the CSS each page needs to render immediately rather than trimming an existing stylesheet down.

Removing unused CSS also only addresses one specific cause of a slow PageSpeed score. If you’re also dealing with large images, unoptimized JavaScript, or no caching at all, neither Berq Used CSS nor manual CSS trimming will fix those, they’re focused specifically on CSS. BerqWP handles the rest of that picture, caching, image optimization, and JavaScript handling, as part of the same plugin.

10 Best WordPress Speed Optimization Plugins

If your WordPress site feels sluggish, you’re not just dealing with an annoyance. Page speed affects how long visitors stay, whether they complete a purchase, and how Google ranks you in search results. Google’s Core Web Vitals (a set of measurements for loading speed, visual stability, and responsiveness) are now a real factor in search rankings, which means a slow site can quietly cost you both visitors and visibility.

The good news: you don’t need to be a developer to fix this. A good WordPress speed optimization plugin handles caching, image compression, code optimization, and content delivery for you. The challenge is that there are dozens of options, and they work in very different ways.

This list breaks down ten plugins WordPress site owners are actively considering right now: what each one does well, where it falls short, and who it’s actually a good fit for. We’ll start with the one we think makes the strongest case for most sites, then walk through the rest so you can compare honestly.

TL;DR

This guide compares ten WordPress speed plugins. BerqWP ranks first. It runs optimization on its own cloud infrastructure (the Photon Engine), not your server. It includes zero-config setup, AVIF and WebP images, unlimited CDN, and automatic cache warming. 84.6% of 4.6 million real user sessions on BerqWP sites passed Google’s Core Web Vitals in a recent 28-day window.

Other options: WP Rocket (best local plugin, no CWV dashboard), NitroPack (cloud-based, pageview caps), LiteSpeed Cache (LiteSpeed servers only), Perfmatters (script control only), WP-Optimize (database cleanup plus basic caching), Speed Optimizer (SiteGround only), Swift Performance (strong local Critical CSS), Airlift and RapidLoad (narrow use cases).


Quick Comparison

PluginArchitectureImage optimizationBuilt-in Core Web Vitals dataCDN includedDatabase cleanupDebloatSetup effort
BerqWPCloud-basedWebP + AVIFYesYes, unlimitedYesYesZero config
WP RocketLocal (server-side)WebP via Imagify (add-on)NoYes (RocketCDN)NoLimitedLight
NitroPackCloud-basedWebPNoYes, capped by planNoNoLight
LiteSpeed CacheLocal (server-side)WebP via QUIC.cloudNoOptional (QUIC.cloud)YesLimitedModerate
AirliftCloud-basedLimitedNoYesNoNoLight
PerfmattersLocal (server-side)Not includedNoNot includedNoYesModerate to high
WP-OptimizeLocal (server-side)Basic compressionNoNot includedYesNoLight to moderate
Speed Optimizer (SiteGround)Local (server-side)BasicNoNot includedNoLimitedLight
Swift PerformanceLocal (server-side)Limited (Pro adds API-based)NoOptional integrationNoLimitedModerate
RapidLoadCloud-assistedNot a focusNoNot includedNoNoLight

1. BerqWP

BerqWP

Best for: Site owners who want a complete speed solution without configuring anything.

BerqWP takes a different approach than most plugins on this list: instead of running optimization tasks on your own server, it processes your pages on its own cloud infrastructure (BerqWP calls this the Photon Engine). When a visitor requests a page, BerqWP’s cloud fetches it, optimizes it, caches it, and delivers the result. Your server’s job is mostly just handling the original request. Everything else, including image conversion, CSS optimization, and JavaScript handling, happens off your hosting.

What that means in practice:

  • Zero configuration. Install the plugin, activate your plan, and BerqWP automatically determines the right optimization approach for your specific theme and plugin combination. There’s no checklist of toggles to get right.
  • Image optimization that goes further than most. BerqWP converts images to AVIF (a newer format with smaller file sizes than WebP at equal quality) or WebP as a fallback, served automatically based on what the visitor’s browser supports. Through Fluid Images, images are also delivered at the right size for each visitor’s screen via a dedicated image CDN, and lazy-loaded with placeholder shapes that prevent the page from jumping around as it loads.
  • Built-in Core Web Vitals monitoring. Go to BerqWP > Dashboard and enable “Monitor Core Web Vitals” to get a Web Vitals Analytics dashboard showing real visitor data: which pages are passing Google’s thresholds, broken down by page and device, tracked over time. Across BerqWP’s active sites, 84.6% of 4.6 million real user sessions passed Google’s Core Web Vitals over a recent 28-day window. Most plugins on this list leave you guessing; this one shows you the data.
  • A CDN with no usage caps. Static assets are served through 300+ points of presence with unlimited bandwidth on paid plans, so a traffic spike doesn’t suddenly cost you more or slow things down.
  • Cache rebuilding that doesn’t slam your server. Clearing your cache (after a content update, a plugin change, or a manual flush) means every page has to be rebuilt. On a busy site, that can mean a sudden wave of uncached requests hitting your server all at once, which is a common cause of slowdowns or brief downtime right when traffic is highest. BerqWP’s Cloud method automatically warms the cache back up after a flush, and that rebuilding work happens on BerqWP’s own infrastructure (the Photon Engine) rather than your hosting. Your server isn’t the one absorbing the spike.
  • Real-time compatibility patches. When a popular theme or page builder update causes a conflict, BerqWP can apply a fix at the cloud level across all its sites, without you needing to install a plugin update.
  • Optimization Modes that match your site’s needs. From BerqWP > Dashboard, you can choose between Standard, Smart, Blaze, and Turbo, which represent increasing levels of optimization aggressiveness. For more granular control over how scripts execute, BerqWP > CSS & JavaScript > JavaScript Execution Mode lets you pick between Flora (the default, built for high compatibility), Sequential Blocking Execution, Parallel Execution, or Sequential Execution.
  • Database optimization built in. The Database tab cleans up the clutter that accumulates in your WordPress database over time: old post revisions, auto-drafts and trashed posts, expired transients, spam and trashed comments, and orphaned post meta. It also optimizes your database tables for better query performance. You can run cleanup manually or schedule it, so a growing database doesn’t quietly slow down your admin and front end. See what’s new in BerqWP 4.1.10.
  • Debloat to strip unnecessary WordPress overhead. The Debloat tab removes background WordPress features that load on every page whether you use them or not: the Heartbeat API (which can be throttled or disabled), emojis, embeds, XML-RPC, the REST API discovery link, self pingbacks, and unused <head> tags. Fewer unnecessary scripts and requests mean a leaner page and less server work per visitor.
  • A free local option. If you’re not ready for the cloud method, BerqWP’s Local optimization runs entirely on your own server with no account required. It includes full-page caching, Used CSS, lazy loading, and font optimization at no cost.

Where it’s still growing: BerqWP’s developer ecosystem and third-party tutorials are smaller than what you’ll find for older, more established plugins. If you want a huge library of community guides and forum threads to reference, that’s still an area where more established names have an edge, though BerqWP does support programmatic cache control through hooks and filters.

For most WordPress site owners who want one plugin that handles the entire performance stack rather than assembling several, BerqWP is the strongest starting point on this list. It comes with a 14-day money-back guarantee, so you can test it on your own site and check your Web Vitals Analytics after a week before deciding.


2. WP Rocket

WP Rocket

Best for: Site owners who want a well-established local plugin with sensible defaults.

WP Rocket has built a strong reputation as one of the easier local caching plugins to configure. It runs entirely on your own server, handling page caching, CSS and JavaScript optimization, and lazy loading through a clean settings interface. Most users can install it, flip a few switches, and see a real improvement without much fuss.

Its limitations show up around the edges of the stack. WebP image conversion requires Imagify, a separate paid product from the same company, and there’s no AVIF support. There’s also no built-in Core Web Vitals dashboard, so you’ll need to rely on Google Search Console or another external tool to know whether your changes are actually moving the needle. Because it runs on your server rather than in the cloud, the processing load (and the responsibility for fixing compatibility issues when a theme update breaks something) sits with your hosting and with WP Rocket’s update cycle.

If you’re comfortable being in an ecosystem with a long track record and a large community, and you don’t mind picking up Imagify separately for image handling, WP Rocket remains a solid choice.


3. NitroPack

NitroPack

Best for: Sites with steady, predictable traffic that fits comfortably within a pageview tier.

NitroPack is one of the few other cloud-based options on this list, which puts it in a similar category to BerqWP architecturally. It processes your pages through its own optimization pipeline off your server and has refined that approach since 2019, with a large user base behind it.

The detail that matters most before choosing NitroPack: its plans are built around monthly pageview limits. Go over your tier’s cap, and NitroPack pauses optimizing new pages until your next billing cycle. For a site with stable traffic, that may never come up. For a site that gets occasional spikes (a viral post, a seasonal sale, press coverage), it can become a real bottleneck at the worst possible time. NitroPack also converts images to WebP but doesn’t support AVIF, and like most plugins here, it has no built-in Core Web Vitals dashboard.

NitroPack is a mature product worth considering if your traffic is consistent and you’re comfortable with a pageview-based plan structure.


4. LiteSpeed Cache

LiteSpeed Cache

Best for: Sites hosted on LiteSpeed or OpenLiteSpeed servers.

LiteSpeed Cache is a free plugin that does its best work when your hosting actually runs on LiteSpeed Web Server. In that environment, it can offload caching to the server level, which is fast and efficient. It also includes CSS and JavaScript optimization, lazy loading, and database cleanup, and can connect to QUIC.cloud for image optimization and CDN delivery.

The catch is that environment dependency. If your host doesn’t run LiteSpeed, you lose the plugin’s biggest advantage and you’re left with a more general-purpose optimization toolkit that takes more configuration to get right. There’s also no built-in Core Web Vitals monitoring, and the settings panel can feel dense if you’re not familiar with server-level caching concepts.

If you already know your hosting runs on LiteSpeed, this plugin is worth a serious look. If you’re not sure, check with your host first; the value proposition changes significantly depending on the answer.


5. Airlift

Airlift

Best for: Sites looking for a newer cloud-based option with a simple setup.

Airlift has been gaining attention as a newer entrant in the cloud optimization space, positioning itself as a complete performance solution that also targets Core Web Vitals improvements. Like BerqWP and NitroPack, it handles optimization off your server rather than relying entirely on local PHP processing.

Where it currently falls short of more established cloud options: its JavaScript controls are more limited, with no equivalent to a multi-mode execution system for resolving script conflicts, which can make troubleshooting harder when something breaks. It doesn’t support AVIF image delivery, which matters for image-heavy sites where file size has a direct effect on loading speed. It also doesn’t include a Core Web Vitals dashboard or white-label support, both of which matter if you’re managing the site for someone else.

Airlift is worth watching as it matures, and may suit smaller sites looking for a straightforward cloud-based starting point. Larger or more complex sites will likely find its current feature set thinner than other cloud options on this list.


6. Perfmatters

Perfmatters

Best for: Developers who want granular, per-script control rather than an all-in-one tool.

Perfmatters takes a different angle entirely. Rather than trying to be a complete optimization suite, it’s a lightweight toolkit focused on specific tasks: disabling unused WordPress features, controlling which scripts load on which pages, and trimming bloat. For a technical user who wants precise control over what runs where, it’s a genuinely useful tool.

The tradeoff is that it’s intentionally not a full solution. There’s no built-in caching engine to speak of, no image optimization, no CDN, and no Core Web Vitals monitoring. Most people pair it with other plugins to cover those gaps, which means more pieces to manage and more potential points of conflict between them.

If you already run a capable caching and optimization plugin and want an additional layer of fine-grained script control on top, Perfmatters can be a smart addition. As a standalone speed solution, it isn’t designed to be one.


7. WP-Optimize

WP Optimize

Best for: Site owners who want database cleanup bundled with basic caching.

WP-Optimize, from the team behind UpdraftPlus, combines a few different jobs in one plugin: database cleanup (removing old revisions, spam comments, and transient data that accumulates over time), page caching, and basic image compression. For sites that have been running for years and have accumulated a bloated database, the cleanup feature alone can produce a noticeable improvement.

It’s a more modest tool than the cloud-based options on this list. There’s no advanced image format support like AVIF, no CDN, and no Core Web Vitals tracking built in. Its caching and optimization features cover the basics well but don’t go particularly deep.

If your main concern is a database that’s grown unwieldy over time and you want simple caching alongside that cleanup, WP-Optimize handles that combination reasonably well.


8. Speed Optimizer (SiteGround)

SiteGround Optimizer

Best for: SiteGround customers who want a free, host-integrated starting point.

Speed Optimizer is SiteGround’s own performance plugin, built to integrate tightly with SiteGround’s hosting environment. It’s free, handles basic caching and some frontend optimizations, and requires very little setup if you’re already on SiteGround’s infrastructure.

Its biggest constraint is that it’s designed around SiteGround specifically. If you ever move to a different host, the plugin’s usefulness drops sharply, and you’ll likely need to replace it entirely. It also doesn’t offer the depth of image optimization, CDN inclusion, or Core Web Vitals visibility that dedicated optimization plugins provide.

For SiteGround customers who want an easy, no-cost first step, it’s a reasonable starting point. Just go in aware that it’s tied to your hosting choice.


9. Swift Performance

Swift Performance

Best for: Technical users who want a capable local plugin with strong Critical CSS generation.

Swift Performance stands out among local (server-side) plugins for one thing in particular: its ability to generate Critical CSS (the small portion of your stylesheet needed to render what’s visible on screen before the visitor scrolls) directly on your server. For a plugin that doesn’t rely on cloud infrastructure, that’s a genuinely impressive technical feature, and it can meaningfully reduce render-blocking delays.

The tradeoffs come from being a local tool. Critical CSS generation can misidentify what’s above the fold on certain themes or page builders, requiring manual fixes. Image optimization is limited unless you’re on the Pro tier and connect a separate API. There’s no built-in Core Web Vitals dashboard, and because everything runs on your server, your hosting carries the processing load.

If you’re an experienced user who wants deep local control and doesn’t mind some hands-on tuning, Swift Performance is one of the more technically capable choices in the local plugin category.


10. RapidLoad

RapidLoad

Best for: Site owners specifically looking to fix render-blocking CSS issues.

RapidLoad has built a following around one particular pain point: automatically generating critical CSS and resolving render-blocking stylesheet issues, which are a common cause of slow perceived load times and poor Largest Contentful Paint scores. It’s positioned as a simpler, more automated way to tackle that specific problem than configuring it manually in a broader plugin.

Because it’s focused on that niche, it isn’t trying to be a full performance suite. It doesn’t include the broader feature set you’d expect from an all-in-one tool: no built-in CDN, no Core Web Vitals dashboard, and image optimization isn’t a core focus. Most users will need to pair it with other tools to cover caching, images, and monitoring.

If render-blocking CSS specifically has been your sticking point and you want a focused tool to address just that, RapidLoad is worth a look. As a complete speed solution on its own, it has gaps to fill.


How to Choose the Right One for Your Site

With this many options, it helps to have a simple framework rather than trying every plugin one by one. Ask yourself these questions:

Cloud-based or local? Local plugins run entirely on your own server, which means your hosting resources do the optimization work and any compatibility fixes wait for a plugin update. Cloud-based plugins like BerqWP process pages on their own infrastructure, which takes the load off your server and allows fixes to be applied centrally and quickly. Neither approach is wrong, but they come with different tradeoffs worth understanding before you commit.

Does it handle images, or do you need a separate plugin for that? Image files are often the heaviest part of a page. A plugin that includes WebP and AVIF conversion, responsive sizing, and lazy loading saves you from adding (and paying for) another tool just to cover that piece.

Can you actually see your Core Web Vitals data? Optimizing blindly is frustrating. A plugin with a built-in dashboard that shows real visitor data tells you whether your site is passing Google’s thresholds and whether your changes are working, without bouncing between external tools.

Is it one plugin, or the start of a stack? Some tools on this list are excellent at one specific job and expect you to pair them with others. That’s fine if you enjoy assembling and maintaining a setup. If you’d rather have one plugin cover caching, images, CDN, and monitoring together, an all-in-one option saves real time and reduces the number of things that can conflict with each other.

What happens to your server when the cache gets cleared? Every cache eventually needs to be rebuilt, whether that’s after you publish new content, change a setting, or flush it manually. With most local plugins, that rebuild happens through your own server as visitors request pages and trigger regeneration on the fly, which can spike load on a busy site at exactly the wrong moment. Plugins that proactively rebuild the cache off your server (as BerqWP’s Cloud method does) avoid putting that pressure on your hosting in the first place.

How much setup and maintenance are you willing to take on? Some plugins reward time spent configuring them carefully. Others are built to work the moment you activate them. Be honest with yourself about how much time you actually want to spend here.


Getting Started with BerqWP

If you want to try the option at the top of this list, here’s how to get going:

  1. Install and activate BerqWP from the WordPress plugin directory, then activate your plan (or switch to the free Local method if you’d rather start there).
  2. Choose your optimization method at BerqWP > Dashboard. The Cloud method handles everything automatically; the Local method runs on your own server at no cost.
  3. Turn on Sandbox Mode before changing any settings. This lets you preview how your site looks and performs with BerqWP active, without affecting what your visitors see, so you can catch any issues before going live.
  4. Check your Web Vitals Analytics dashboard after about a week of real traffic. You’ll be able to see which pages are passing Google’s Core Web Vitals thresholds and which ones might need attention.

If something doesn’t look right or a setting isn’t behaving as expected, BerqWP’s support team is available at berqwp.com/support or by emailing support@berqwp.com.


Final Thoughts

There’s no single plugin that’s the right fit for every WordPress site. If you’re already deep into a specific hosting environment, comfortable with hands-on configuration, or only need to solve one narrow problem, several of the options above might serve you well.

That said, for the majority of WordPress site owners who want to stop assembling a stack of separate tools and start with something that covers caching, image optimization, CDN delivery, and Core Web Vitals visibility in one place, BerqWP’s combination of zero-configuration setup and cloud-based processing makes it the strongest place to start. Try it in Sandbox Mode, look at your real data after a week, and make the call based on how your own site performs.

Offload Performance Headache to BerqWP

No configurations
Built for non techies
100% risk free
BerqWP v4 Dashboard
👋 Need help? Chat with us!
AI Support
Online
Hi! How can I help you today?
Powered by WP Replai