Code-Snippets-Functions/Execute a function on a child site/Astra/disable-widget-block-editor-support.txt

4 lines
155 B
Text

add_action( 'after_setup_theme', 'astra_remove_theme_support' );
function astra_remove_theme_support() {
remove_theme_support( 'widgets-block-editor' );
}