Restore Classic Widgets by Adding Code to WordPress

This code snippet simply disables the Gutenberg block editor in the widget area

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