Taking the Assembly Out of Critical CSS
Critical CSS is a recurring recommendation in performance audits: inline the styles needed for above-the-fold content into a <style> tag in the <head>, then load the remaining stylesheets asynchronously. It is a straightforward optimization that most WordPress developers have seen flagged in Lighthouse, but acting on it has historically meant wiring it into whatever build process the site already uses.
Jetpack Boost, a free plugin now listed in the WordPress Plugin Directory, aims to remove that friction by handling critical CSS generation inside WordPress itself. The plugin covers other performance concerns as well, but its approach to critical CSS is what stands out for anyone who has skipped that audit item for lack of a convenient tool.
After installing Jetpack Boost like any other WordPress plugin, a new item appears in the admin menu. That screen runs an in-WordPress performance assessment similar in spirit to Lighthouse, and it contains a toggle for generating critical CSS. Flipping that switch is all the setup required; the plugin starts processing immediately.
The job completes in roughly the time it takes to check another tab. The result is a measurable improvement in the performance score, delivered without touching theme files or introducing a separate build step.
Looking at the rendered page source confirms the work is real: the critical styles are there in the document head, exactly as the manual technique prescribes. The improvement holds up when returning to Lighthouse for a before-and-after comparison.
The significance here is less about the specific score and more about Jetpack consolidating performance work into a dedicated, free plugin. Performance options have lived inside Jetpack's settings for a long time, but giving them a standalone home creates room for features that go beyond basic toggles — grading and automated critical CSS being two examples. It is also a sensible direction given how Core Web Vitals now factor into search rankings. Expect more of Jetpack's performance settings to migrate into Boost over time.



