A Reddit thread asking developers for the fastest, zero-bloat WordPress theme drew over 60 responses — and three names dominated: Blockify, Kadence, and GeneratePress. The consensus offers a practical shortlist for anyone choosing a theme baseline for performance-critical builds.
Blockify, a block-based theme built around theme.json configuration, earned praise for its near-empty stylesheet and full reliance on WordPress’s native block styling system. Kadence was cited repeatedly for its combination of a lightweight core and granular control over what loads on each page. GeneratePress, a long-standing favourite in the performance community, was mentioned alongside its block-based companion, GenerateBlocks, as a reliable baseline for both classic and full site editing (FSE) builds.

The recommendations share a common thread: let WordPress core handle layout and styling rather than layering on redundant CSS, JavaScript, or custom templating logic. Themes that offload typography, colour, spacing, and layout control to theme.json — the configuration file introduced with WordPress 5.8 that governs global styles — tend to produce smaller page payloads and fewer render-blocking resources than those bundling their own design systems.
- Blockify
- Praised for its near-empty stylesheet and full reliance on WordPress’s native block styling — commenters noted it brings almost no frontend overhead out of the box.
- Kadence
- Repeatedly cited for its minimal core payload and granular per-page control over which scripts and styles actually load.
- GeneratePress
- A consistent thread favourite, often recommended alongside GenerateBlocks as a reliable zero-bloat baseline for both classic and FSE builds.
The thread also surfaced a broader tension in modern theme development: popular multipurpose themes — even those marketed as “fast” — frequently enqueue scripts and styles that go unused on most pages. Several commenters recommended starting with a nearly empty block theme and building up through the Site Editor — WordPress’s native full-site editing interface, available since WordPress 5.9 — using block patterns and template parts rather than PHP-heavy page builder logic.
Commenters reported that Kadence and GeneratePress both ship stylesheets under 10KB with no bundled JavaScript, while block themes like Blockify and the default Twenty Twenty-Four carry almost no frontend overhead by design. The thread’s consistent takeaway: evaluate themes by what they remove as much as what they include.
With Core Web Vitals remaining a ranking factor and Lighthouse — Google’s open-source performance auditing tool — scores increasingly visible to clients, theme choice continues to carry significant weight in project planning. The continued maturation of FSE and theme.json means a minimal theme today can offer more visual flexibility than a heavier theme could two years ago.