Skip to main content

WordPress 7.0 Beta 1: Collaboration, AI Abilities API, and What Developers Should Know

· 5 min read
Victor Jimenez
Software Engineer & AI Agent Builder

WordPress 7.0 Beta 1 is here, and it is not an incremental update. The two big moves are real-time collaboration and native AI integration via the Abilities API. Whether that makes WordPress "an intelligent workspace" or just a more complicated CMS depends entirely on the execution.

I dug into the developer-facing features. Some are genuinely good. Some need caveats.

The Headline Features

"WordPress 7.0 introduces the Abilities API — a standardized way for WordPress to expose its capabilities to external services, particularly AI agents."

— WordPress 7.0 Beta 1 Release Notes

Context

WordPress 7.0 Beta 1 targets a March 17, 2026 beta and April 9, 2026 final release. Features are subject to change. The Abilities API with its MCP Adapter is the biggest architectural change for developers since custom post types.

Real-Time Collaboration

Multiple users can now work on the same post simultaneously, seeing each other's cursors and changes as they happen. A new Notes system allows editors to leave comments on specific blocks.

FeatureWhat It Does
Real-time co-editingMultiple users, same post, live cursors
Block-level NotesIn-context feedback on specific blocks
Presence indicatorsSee who is editing what

The Abilities API and MCP Adapter

This is the big one. WordPress now has a native way to expose capabilities to AI agents.

Plugins register "abilities" — like create_post, install_plugin, or moderate_comments — which the MCP Adapter translates into a standardized protocol that AI agents can understand.

wp-content/plugins/my-plugin/abilities.php
register_ability('my_plugin_backup', [
'label' => 'Run Site Backup',
'callback' => 'my_plugin_run_backup',
'capability' => 'manage_options',
'description' => 'Triggers a full site backup.',
]);

Developer Impact Summary

FeatureImpactAction Required
Abilities APINew plugin surface area for AI integrationStart planning which abilities your plugins should expose
Real-time co-editingChanges team workflowsTest multi-user scenarios
PHP-only blocksLowers barrier for simple blocksEvaluate if JS build step is still needed
View Transitions APISmoother admin navigationTest for visual regressions
Always-iframed editorStyle encapsulationTest all admin CSS and JS
Reality Check

The fully iframed editor is a subtle but real breaking change. I found that any code querying editor-canvas DOM from the parent admin document is fragile. Custom metaboxes, TinyMCE-era selectors, direct window/document editor probing -- those are the first breakpoints. Test now, not after final release.

Additional developer changes
  • View Transitions API: Admin interface uses browser-native View Transitions for smoother navigation
  • Editor asset loading: enqueue_block_assets is now the correct hook for content styles/scripts inside the editor canvas and on the front end
  • Editor shell assets: Should stay in enqueue_block_editor_assets
  • Block API version: No longer determines iframe behavior — editor is always iframed

What I Learned

  • The Abilities API is the real story here. I have already started mapping which of my plugin capabilities make sense to expose. This is the first WordPress feature in years that changes how I think about plugin architecture.
  • Collaboration is no longer an afterthought. Real-time co-editing will change how larger teams use WordPress. I can see this killing the need for third-party collaborative writing tools on editorial teams I work with.
  • Admin CSS broke on two of my plugins. The iframed editor is a breaking change for anything with custom admin styling. I caught it early, but it would have been ugly in production.
  • PHP-only blocks are a genuine improvement. For simple dynamic blocks, dropping the JavaScript build step removes real friction. I have already converted two blocks.

References

  • This review is based on the official release notes and developer commentary for WordPress 7.0 Beta 1. As this is a beta release, features are subject to change.

Looking for an Architect who doesn't just write code, but builds the AI systems that multiply your team's output? View my enterprise CMS case studies at victorjimenezdev.github.io or connect with me on LinkedIn.