'How to disable widget block editor of WordPress?

WP 5.8 comes with a new system to manage events named "Widgets Block Editor". How can I disable this new system and restore the classic widget editor of WordPress?



Solution 1:[1]

To disable the new WordPress widget editor system you can use one of following methods.

1. Install and Activate the Disable Widget Block Editor plugin.

2. Use use_widgets_block_editor filter to disable it. You can place following code in your theme functions.php file or your plugin.

add_filter( 'use_widgets_block_editor', '__return_false' );

3. Use following code in functions.php of your theme to declare that your theme doesn't support the new widget editor system.

remove_theme_support( 'widgets-block-editor' )

Solution 2:[2]

Method 1: Do you want to disable the new widget block editor page of Gutenberg and bring back the old widgets page? You can do that simply by adding this line into your theme's functions.php file:

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

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

Don't forget to save the functions.php file.

Method 2: If you don't need to edit the functions.php file of your theme, install and activate any one plugin, and the old widgets page will be back:

  1. https://wordpress.org/plugins/disable-gutenberg/
  2. https://wordpress.org/plugins/classic-widgets/

Tested & working for me.

Hope this is helpful for you.

Thanks in advance

Solution 3:[3]

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

It appears that one of the filters has been renamed. It is no longer "wp_use_widgets_block_editor", it's just "use_widgets_block_editor". The most upvoted answer by @Savan Dholu should be edited to reflect that (I'm afraid I can't comment as I'm missing enough reputation * ROLLEYES *).

Solution 4:[4]

enter image description here

You can install the plugin (rather than codes that might break your website) which is introduced in the new Widget Editor guide: Classic Widgets

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1
Solution 2
Solution 3 Oliver Gehrmann
Solution 4 Amir2mi