Make WordPress Core


Ignore:
Timestamp:
05/08/2026 03:58:51 PM (14 hours ago)
Author:
desrosj
Message:

Remove real-time collaboration.

Removes all RTC related code from core. There will still be RTC related code in Gutenberg, but effectively disabled for core since nothing turns it on. The wp.sync global has also been hidden by bundling in https://github.com/WordPress/gutenberg/pull/78085.

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

Reviewed by desrosj.
Merges [62334], [62337] to the 7.0 branch.

Props maxschmeling, ellatrix, mukesh27.
Fixes #65205.

Location:
branches/7.0
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/7.0

  • branches/7.0/src/wp-includes/rest-api.php

    r62107 r62338  
    429429    $icons_controller = new WP_REST_Icons_Controller();
    430430    $icons_controller->register_routes();
    431 
    432     // Collaboration.
    433     if ( wp_is_collaboration_enabled() ) {
    434         $sync_storage = new WP_Sync_Post_Meta_Storage();
    435         $sync_server  = new WP_HTTP_Polling_Sync_Server( $sync_storage );
    436         $sync_server->register_routes();
    437     }
    438431}
    439432
Note: See TracChangeset for help on using the changeset viewer.