Make WordPress Core


Ignore:
Timestamp:
05/08/2026 03:58:51 PM (11 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/option.php

    r62058 r62338  
    28872887
    28882888    register_setting(
    2889         'writing',
    2890         'wp_collaboration_enabled',
    2891         array(
    2892             'type'              => 'boolean',
    2893             'description'       => __( 'Enable Real-Time Collaboration' ),
    2894             'sanitize_callback' => 'rest_sanitize_boolean',
    2895             'default'           => false,
    2896             'show_in_rest'      => true,
    2897         )
    2898     );
    2899 
    2900     register_setting(
    29012889        'reading',
    29022890        'posts_per_page',
Note: See TracChangeset for help on using the changeset viewer.