Disable block editor support for widgets in the Astra theme

Disable block editor support for widgets in the Astra theme.

Snippet Type

Execute on Child Sites

Snippet

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

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