Automatically Removing Unused CSS from Wordpress Pages?

Benny Powers 🇮🇱🇨🇦 - Sep 20 '18 - - Dev Community

The Problem

A client approached me with a WordPress site (100+ pages) that takes over 20 seconds to load. I analyzed the site with lighthouse and other tools and found that there's at least 2mb of useless CSS and other crap loading on the home page.

Looking into the WP setup, it uses an off-the-shelf (theme store) theme with the typical glut of useless crap.

The Naive Solution

I could go through each page, analyze the unused CSS with browser extensions, then collate the results of those analyses into a (hopefully smaller) theme style.css This would take hours of repetitive mechanical work, with lots of potential human error.

The Preferred Strategy

Tools like purifycss are able to statically analyze the final rendered markup for a page and strip the CSS file to only contain used rules. I think it should be very possible to write a plugin that does something like the following on each page load:

  1. Concat all CSS files together
  2. Replace all CSS links with the single concatted link
  3. Render the page
  4. Run purifycss on the rendered output, saving the minified and optimized CSS to a new file with a hashed name
  5. Replace the concatted link with a link to the new optimized file
  6. Serve the page

All of that should happen before the caching plugin.

The Question

Does something like this already exist? What about my plan, is it reasonable? Am I ignoring any potential gotchas?

. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
Terabox Video Player