Skip to content

Answer · WordPress Web Design

What’s Full Site Editing (FSE) in WordPress?

14 days kickoff → live $3K–$15K+ scope-tiered WCAG 2.1 AA baseline

The short answer

Full Site Editing (FSE) is the WordPress feature that lets a custom block theme own headers, footers, page templates, and design tokens natively — no page-builder plugin required. Available since WordPress 5.9 (January 2022), production-ready since late 2023.

№ 01The longer answer

Before FSE, a WordPress theme controlled the chrome (header, footer) via PHP templates while page content lived in the editor — usually a page builder like Elementor. Two parallel systems. FSE collapses both into the block editor: the header is blocks, footers are blocks, templates are blocks. Design tokens (colors, fonts, spacing) live in theme.json — a single source of truth.

The performance win is structural. Page builders ship a layout engine to every browser, adding 800KB-1.4MB of JavaScript per pageview. FSE produces near-final HTML at the editor stage. No runtime layout engine. Page weight drops 60-75% on the same content.

The authoring experience differs from Elementor. FSE’s block editor uses abstract concepts (Group, Stack, Row, Cover) that take a session to internalize. We close most of the gap by shipping every client site with 20-40 pre-built block patterns — the client picks a pattern, edits text, replaces images. Structural decisions are pre-made.

We migrated our entire client toolchain to FSE in late 2023 and don’t look back. Plugin counts drop from 17 to 5-6. LCP drops from 2.8s to 1.2s. Maintenance overhead drops by 60%. Trade-off: steeper authoring learning curve, mitigated by good pattern libraries.

№ 02Can FSE replace Elementor entirely?

Yes for most use cases. Edge case: complex animation-heavy marketing pages can still be easier in Elementor for non-developers. For 95% of mid-market B2B content, FSE is the right tool.

№ 03Do I need to be technical to use FSE?

For content editing, no — it’s similar to Google Docs. For structural changes (new section types, layout adjustments), yes — that’s a developer task.

№ 04Will FSE keep evolving?

Yes. WordPress 6.x releases continue shipping FSE improvements. Block patterns, design tools, and the editor experience are still maturing. The architecture is settled though.