Make WordPress Core


Ignore:
Timestamp:
03/19/2026 07:35:44 AM (2 months ago)
Author:
ellatrix
Message:

Real-time collaboration: change to opt-in (off-by-default).

See: https://wordpress.slack.com/archives/C07NVJ51X6K/p1773850504196589.

We are intentionally changing the option name so that it will be off-by-default for everyone, including those that installed a beta release where the feature was on-by-default.

Developed in: https://github.com/WordPress/wordpress-develop/pull/11289.

Fixes #64845.
Props czarate, peterwilsoncc, jorbin.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/rest-api.php

    r61833 r62058  
    431431
    432432    // Collaboration.
    433     if ( get_option( 'wp_enable_real_time_collaboration' ) ) {
     433    if ( (bool) get_option( 'wp_collaboration_enabled' ) ) {
    434434        $sync_storage = new WP_Sync_Post_Meta_Storage();
    435435        $sync_server  = new WP_HTTP_Polling_Sync_Server( $sync_storage );
Note: See TracChangeset for help on using the changeset viewer.