Disable the block inspector tabs in WordPress 6.2

Disable the block inspector tabs in WordPress 6.2 on child sites.

Snippet Type

Execute on Child Sites

Snippet

function my_plugin_disable_tabs_by_default( $settings ) {
    $settings['blockInspectorTabs'] = array( 'default' => false );
    return $settings;
}
add_filter('block_editor_settings_all', 'my_plugin_disable_tabs_by_default');

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.