mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
5 lines
227 B
Text
5 lines
227 B
Text
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');
|