We recently finished a large website for an engineering firm — the kind of
site with a deep services structure, a real content library, and search that
actually needed to work. Nothing about the scope was small. What was new was
how we built it.
For the first time, we did the entire thing without a code repository. No
git, no pushing changes, no staging-to-production pipeline. Just WordPress,
in the admin, from first block to final page.
The stack
GeneratePress and GenerateBlocks did the structural and visual work — full
site editing, real layout control, without a page builder's usual bloat.
ACF handled the custom fields and
content modeling underneath it. Search & Filter Pro
ran the site's search and filtering, which for a firm with this much
services content mattered more than it might on a simpler site. And
Code Snippets covered
the handful of small functional pieces that would normally have meant
opening a theme's functions.php.
Every one of those lives inside the WordPress admin. Nothing required a
local environment, a deploy step, or a pull request.
What actually changed
The honest answer is: less waiting, and fewer handoffs.
Normally, a design decision turns into a code change, the code change gets
tested somewhere that isn't production, and then it goes live. That's a good
process for a reason, and we're not dropping it everywhere. But on this
project, a layout change was just a layout change. We made it, looked at it,
and it was done. No branch, no build, no deploy.
That compresses the design-to-finished-product loop in a way that's hard to
appreciate until you've actually worked without it for a stretch. Client
feedback turned into a visible change in minutes rather than a queued task.
Where this fits going forward
This isn't a replacement for custom development — plenty of what we build
needs a real codebase, version control, and a proper deploy pipeline, and
that's not changing. But for content-heavy business sites where the real
complexity is structure and search rather than custom logic, block-based
GeneratePress builds are a genuinely faster path from idea to live site.
We'll be reaching for this stack more often when the project fits it.