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');