What Is WordPress 7.0 Real-Time Collaboration?
Quick Answer
WordPress 7.0 introduces real-time collaborative editing — multiple authors can edit the same post simultaneously, like Google Docs inside your WordPress dashboard. This requires your host to support PHP 8.2+, persistent WebSocket connections, and a properly tuned database with row-level locking. Most shared hosting plans cannot provide this. Managed WordPress hosting or a VPS is the right environment.
For fifteen years, WordPress editing has been single-user: one person opens a post, edits it, saves. WordPress 7.0 changes that fundamentally. Real-Time Collaboration (RTC) lets multiple editors work on the same post simultaneously, with changes appearing live for everyone — cursor positions, text insertions, block moves, and all.
The feature is purpose-built for editorial teams, agency workflows, and anyone who has spent time pasting content between Notion, Google Docs, and WordPress to collaborate before publishing. It brings that workflow natively into the block editor.
But collaborative editing isn't just a feature — it's an infrastructure requirement. The hosting implications are significant and, so far, almost entirely absent from the WordPress news cycle. That's the gap this post fills.
Release Status: The Delay Explained
WordPress 7.0 was originally scheduled for April 9, 2026. On March 31, the core team announced it was reverting from Release Candidate back to Beta 3 — a rare step that signals a meaningful technical problem, not a minor polish issue.
The reason: the RTC feature's database architecture. The initial implementation used optimistic locking at the document level, which created merge conflicts and data loss scenarios under concurrent write load (WordPress.org Developer Blog, April 2026). The team switched to a row-level locking approach with a dedicated collaboration session table, but the migration required additional testing before it could be shipped.
Current status (as of April 21, 2026)
WordPress 7.0 is in Beta 3. No new release date has been officially confirmed. Based on historical release cadence and the scope of the architecture change, May 2026 is the most likely target window. Check the WordPress Developer Blog for the latest schedule.
The delay is actually good news for site owners: it gives you a window to check your hosting stack before the release lands. Use it.
How RTC Works Under the Hood
Understanding the architecture explains why hosting requirements changed. WordPress 7.0 RTC uses three interconnected mechanisms:
WebSocket / Server-Sent Events
Each editor maintains a persistent connection to the server. As one editor types, their changes are broadcast to all other connected editors in real time. WebSockets are used where available; SSE is the fallback.
Shared DB session layer
A new collaboration_sessions table tracks active editors, document state, and operation history. Each edit is stored as an operation (not a diff), enabling conflict-free merge via an Operational Transformation (OT) algorithm.
Row-level locking
The database must support row-level locking to allow concurrent writes to the session table without blocking or corrupting state. MySQL 8.0+ and MariaDB 10.6+ handle this natively with InnoDB storage engine. Older engines or misconfigured databases cause session conflicts.
The key implication: RTC is not a JavaScript-only feature. It requires the server to maintain persistent connections and the database to handle concurrent writes correctly. Both are controlled entirely by your hosting environment — not your WordPress theme or plugins.
Hosting Requirements You Need to Check
Four requirements. All of them matter. None of them are optional if you want RTC to actually work.
1. PHP 8.2 or higher
WordPress 7.0 requires PHP 8.2 as a minimum (WordPress.org, 2026). The RTC engine uses named arguments, readonly class properties, and fibers — language features only available from PHP 8.1+, with full stability requiring 8.2+. PHP 8.4 is the recommended version for the best performance.
If your site is still on PHP 7.4 or PHP 8.0, WordPress 7.0 will either refuse to activate RTC features or fail the upgrade entirely. Check your PHP version in your MevoHost control panel under PHP Manager — switching takes about 30 seconds.
// In wp-config.php or via CLI: php -v // Minimum for WP 7.0 RTC: PHP 8.2.x ✓ PHP 8.3.x ✓ (recommended) PHP 8.4.x ✓ (best performance) // Will block RTC: PHP 7.4.x ✗ PHP 8.0.x ✗ PHP 8.1.x ✗ (partial support only)
2. WebSocket or SSE support
The RTC engine needs persistent connections. WebSocket support requires the host to allow HTTP upgrade requests and not forcibly terminate long-lived connections. Many shared hosts cap connection time at 30–120 seconds — enough for a page load, not enough for a live editing session.
Server-Sent Events (SSE) are the fallback — lighter weight and HTTP/1.1 compatible, but still requiring the host to allow persistent open connections without timeout. If both are blocked, RTC degrades to periodic polling, which produces noticeable lag between editors.
3. MySQL 8.0+ or MariaDB 10.6+ with InnoDB
The collaboration session table requires InnoDB with row-level locking enabled. MySQL 8.0 and MariaDB 10.6+ provide this natively. MariaDB 11.x adds further improvements to concurrent transaction handling that benefit the OT session layer directly.
Older MySQL 5.7 installations or MariaDB versions below 10.6 may work for single-user WordPress but will produce lock contention and session corruption under concurrent RTC edits. The March 31 revert was partly triggered by exactly this failure mode in the RC testing environment.
Check your database version
In your MevoHost control panel → phpMyAdmin → run SELECT VERSION(); — you should see MySQL 8.0+ or MariaDB 10.6+. MevoHost defaults to MariaDB 11.x on all new plans.
4. Memory headroom per concurrent editor
Each active RTC session requires approximately 32–64 MB of PHP memory per concurrent editor, beyond the baseline WordPress memory allocation (WordPress core team estimates, 2026). A site with five simultaneous editors needs at least 320 MB of PHP memory available — plus the base WordPress footprint of ~128 MB — meaning a PHP memory limit below 512 MB will start causing dropped sessions under real collaborative use.
Required for RTC engine. PHP 8.4 recommended for best performance.
Each concurrent editor needs ~32–64 MB above base WP allocation (WP core, 2026).
Row-level locking + improved concurrent transaction handling for OT sessions.
What MevoHost Is Doing to Prepare
MevoHost's infrastructure already meets all four WordPress 7.0 RTC requirements on every managed WordPress and VPS plan. Here's the current stack:
Bottom line: If you're on MevoHost Managed WordPress or any MevoHost VPS plan, you don't need to change anything for WordPress 7.0 RTC to work. If you're on shared hosting elsewhere and want to use RTC with your team, now is the time to move.
WordPress 7.0 Upgrade Checklist for Site Owners
Run through this before WordPress 7.0 ships. Each item takes less than five minutes.
Pro tip: test on staging first
MevoHost Managed WordPress plans include one-click staging environments. Clone your live site to staging, install the WordPress 7.0 beta, and test RTC before your production site is touched. This is the safest upgrade path for any site with active users.
Frequently Asked Questions
What PHP version does WordPress 7.0 require?
WordPress 7.0 requires PHP 8.2 as a minimum to support real-time collaboration (WordPress.org, 2026). PHP 8.4 is recommended for optimal performance. Running PHP 7.4 or 8.0 will prevent the RTC features from functioning correctly and may block the upgrade entirely. You can check and change your PHP version in your account dashboard without restarting your site.
Will shared hosting work with WordPress 7.0 real-time collaboration?
Most shared hosting plans cannot support WordPress 7.0 real-time collaboration. RTC requires persistent WebSocket connections, dedicated memory per concurrent editor, and row-level database locking — infrastructure that shared hosting environments typically block or throttle. Single-user WordPress will still work fine after the 7.0 upgrade on shared hosting; only RTC with multiple editors will be unavailable. A managed WordPress hosting plan or VPS is the right environment for teams.
When will WordPress 7.0 be released?
WordPress 7.0 was originally scheduled for April 9, 2026. On March 31, 2026, the release was reverted from Release Candidate back to Beta 3 due to database architecture concerns with the real-time collaboration feature (WordPress.org Developer Blog, April 2026). A revised release date has not been officially confirmed as of April 21, 2026, but May 2026 is widely anticipated based on the scope of remaining changes.
Does WordPress 7.0 RTC require WebSocket support from my host?
Yes. WordPress 7.0 real-time collaboration uses WebSocket connections to push editor state changes between collaborators in real time. Server-Sent Events are the fallback. Hosts that terminate long-lived connections after 30–60 seconds, or that block WebSocket upgrade requests entirely, will break RTC functionality or degrade it to slow periodic polling. LiteSpeed Web Server — which powers all MevoHost plans — supports WebSocket pass-through natively.
Sarah Kim
WordPress Engineer at MevoHost
Sarah specialises in WordPress performance and infrastructure compatibility. She has managed WordPress migrations and stack upgrades for hundreds of sites and tracks every major WordPress core release from alpha through to production.
Related Articles
MariaDB 11.8 & PHP 8.5: The Performance Boosts Most WordPress Owners Completely Missed
TutorialsHow to Migrate Your WordPress Site to MevoHost in 15 Minutes
PerformanceHow to Score 100 on Google PageSpeed: A Complete 2025 Guide
HostingShared vs VPS vs Cloud Hosting: Which One Is Right for You?