WordPress 7.0 feels like more than a routine update — it’s a statement about what WordPress intends to be going forward. This release pushes the platform toward collaboration, AI integrations, and a more visual editing experience. Some changes are incremental, others are foundational. Here’s a concise run-through of what’s new and why it matters.
Release date
Current planned release: May 20, 2026 (see WordPress Core announcements for updates).
1) Real-time collaboration (RTC)
The headline feature: simultaneous editing, similar to Google Docs. Multiple people can edit the same post or page at the same time and see live changes.
Key technical and UX details:
– Uses CRDT (Conflict-free Replicated Data Types) to resolve editing conflicts.
– Built on HTTP polling so it works across a wide range of hosting environments.
– Initially limited to two simultaneous collaborators to reduce load on smaller hosts.
– Hosts can swap transport/storage implementations, and JS filters allow developers to tweak polling intervals.
– RTC is disabled when metaboxes are present, pushing plugin authors toward updated implementation patterns.
Should you care?
It’s a compelling enterprise/newsroom feature, but its usefulness for solo bloggers or small teams is unclear. It was intended to be enabled by default, but backlash made it opt-in. This is the first iteration — expect gradual improvements and broader adoption if hosts and plugin ecosystems adapt.
2) AI foundation: Connectors API + WP AI client
Rather than shipping built-in AI features, WordPress 7.0 provides the framework for AI integrations.
What’s included:
– A new Connectors screen in wp-admin for managing API keys (OpenAI, Anthropic, Gemini, etc.).
– A Connectors API plugins can use to store and manage external-service credentials.
– A provider-agnostic PHP function (wp_ai_client_prompt()) that sends prompts to configured LLMs without each plugin re-implementing credential handling.
Should you care?
Yes, especially if you’re a developer. This architecture keeps WordPress neutral while making it much simpler to build AI-powered tools. For users it means plugins can integrate with LLMs more safely and consistently.
3) Visual revisions
The classic revisions page is replaced with an inline, more visual history UI on the post-edit screen.
New UX highlights:
– A timeline slider in the header to browse versions.
– Color-coded changes (yellow = modified, red = deleted, green = added).
– A minimap on the scrollbar showing where changes occur.
– A Restore button appears when viewing older versions.
Caveats:
– You see rendered content rather than source HTML.
– You cannot compare any two arbitrary revisions; comparisons are to the immediately preceding version only.
Should you care?
For non-technical editors this is more approachable. Long-time revision users who rely on HTML diffs or flexible comparisons may find it limiting. Worth trying to see if it fits your workflow.
Developer standouts
PHP-only block registration
– You can now register blocks using only PHP (no JS build step). Use register_block_type with autoRegister and a render_callback for server-rendered blocks that don’t need interactivity.
Pattern overrides for custom blocks
– Synced pattern capabilities extend beyond basic core blocks: any block that supports Block Bindings can participate in pattern overrides, which helps with repeatable layouts that need instance-specific content.
Client-side Abilities API
– A JavaScript counterpart to the server-side Abilities API introduced earlier. Two packages: @wordpress/abilities (state-only) and @wordpress/core-abilities (REST-connected). This hints at future agent/AI interoperability and richer capability checks in the UI.
Custom CSS per block instance
– Each block sidebar can now include a small CSS input for instance-specific styles. You write declarations only (no selectors) and can use & for nesting.
Design and content editing wins
Navigation overlays
– More control over mobile hamburger menus with customizable overlay template parts, built-in patterns, submenu visibility toggles, and the ability to create pages directly from the Navigation block.
Content-focused pattern editing
– Patterns now default to a content-only editing mode, showing editable fields in a simplified sidebar. You can detach if you need the full block tree. This is particularly handy for client handoffs where layout safety matters.
Viewport-based block visibility
– Show or hide blocks per device type (desktop, tablet, mobile) directly from the toolbar — functionality that previously required plugins.
Command Palette reminder
WordPress includes a global Command Palette (invoke with ⌘K / Ctrl+K) for quickly finding settings, actions, and navigation from anywhere in the admin.
Verdict: good release
Overall, 7.0 is a strong release. Not every new feature will excite every user, but the direction is clear: WordPress is positioning itself as a neutral orchestration layer for modern workflows, especially around collaboration and AI. The Connectors API in particular opens a lot of possibilities for third-party developers without forcing WordPress to pick favorites.
I’m optimistic about how connectors and RTC will evolve, and about the kinds of plugins and tools developers will build on top of these foundations. Congratulations to everyone who contributed.
What do you think? Which feature are you most excited about?
Bonus: site speed crash course
If you want to speed up your WordPress site, consider joining our crash course. Small changes can often reduce load times by 50–80%. By signing up you’ll receive weekly tips and resources — you can unsubscribe anytime.