Status check
Release date: May 20, 2026.
Overview
WordPress 7.0 is more than a set of incremental improvements — it signals a directional shift toward collaboration, neutral AI integration, and richer visual editing. Some features target enterprise and newsroom workflows, others deliver immediate wins for site builders and editors. Below is a concise walkthrough of the highlights and what they mean.
1. Real-time collaboration (RTC)
The headline feature lets people edit the same document simultaneously, Google Docs–style.
– Conflict resolution uses CRDTs (conflict-free replicated data types).
– Transport is based on HTTP polling to keep compatibility with a wide range of hosts.
– Initially limited to two simultaneous collaborators to reduce resource strain on hosting.
– Hosts can replace the transport/storage layer, and developers can alter polling via JS filters.
– RTC is disabled if metaboxes are present, nudging plugin authors toward newer editor patterns.
Who should care? This is primarily aimed at teams, newsrooms, and enterprise environments. Solo writers may find live co-editing intrusive. The feature is opt-in after community pushback, so it won’t be forced on sites by default.
2. AI foundation (Connectors API + WP AI client)
Instead of baking in proprietary AI features, WordPress 7.0 provides the plumbing so plugins and themes can integrate with different services:
– New Connectors screen in wp-admin to manage API keys for providers like OpenAI, Anthropic, Gemini, and others.
– Connectors API plugins can use to store and surface external service credentials (not limited to AI).
– A provider-agnostic helper, wp_ai_client_prompt(), to send prompts to LLMs from PHP.
Why this matters: Developers benefit most. WordPress positions itself as an orchestration layer that handles credentials and common patterns so plugin authors can build on top without re-implementing key management or locking sites into a single AI vendor.
3. Visual revisions
Revisions are now surfaced directly in the editor with a more visual, color-coded interface:
– Timeline slider to scrub through versions.
– Color cues: yellow = modified, red = deleted, green = added.
– A minimap on the scrollbar to jump to changes quickly.
– When viewing history, the action button shows “Restore” instead of “Publish.”
Caveats: The new UI is friendlier for non-technical users, but it drops some advanced features from the old revisions screen — there’s no HTML/source view and you can only compare a selected revision to its immediate predecessor, not arbitrary-to-arbitrary revisions.
Developer standouts
– PHP-only block registration: register_block_type now supports autoRegister and a render_callback, letting you create simple server-rendered blocks without a JS build step.
– Pattern Overrides for custom blocks: Pattern Overrides can be used with any block that supports Block Bindings, enabling synced patterns that still allow instance-specific content.
– Client-side Abilities API: New JS packages (@wordpress/abilities and @wordpress/core-abilities) mirror server-side capabilities, pointing toward future agent or extension integrations.
– Per-instance custom CSS: Add CSS declarations directly in the block sidebar (no selector required) and use & for nesting.
Design and content editing wins
– Navigation overlays: Greater control for mobile menus via overlay template parts, multiple patterns, and submenu visibility toggles. You can now create pages from the Navigation block itself.
– Content-focused pattern editing: Patterns default to a content-only mode that exposes editable fields in a simplified sidebar while keeping layout intact — useful for client handoffs and editors who shouldn’t touch structure.
– Viewport-based block visibility: Toggle block visibility per device (desktop, tablet, mobile) from the block toolbar without relying on plugins.
Command Palette reminder
A global Command Palette (⌘K / Ctrl+K) remains available for quick access to settings and actions from anywhere in the admin.
Verdict
WordPress 7.0 is a meaningful release that clarifies the platform’s priorities: collaboration, neutral AI integration, and cleaner visual editing. Some additions will mainly benefit enterprises and developers (RTC, new developer APIs), while features like visual revisions, device-based visibility, and pattern improvements immediately help site builders and content teams. The Connectors approach to AI is particularly interesting — it could enable a rich ecosystem of AI-powered tools without centralizing choices or endorsing a single provider.
What do you think of WordPress 7.0? Which feature are you most excited about?