How to set Classic Widgets instead of Block Widgets in WordPress?

 How to set Classic Widgets instead of Block Widgets in WordPress?




Add this to your function.php file:

// Disables the block editor from managing widgets in the Gutenberg plugin.
add_filter( 'gutenberg_use_widgets_block_editor', '__return_false' );

// Disables the block editor from managing widgets.
add_filter( 'use_widgets_block_editor', '__return_false' );


 Set Classic Widgets instead of Block Widgets in WordPress?