Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 969
Hossein Avatar asked Jul 17 '21 10:07

Hossein


Video Answer


3 Answers

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

like image 198
Savan Dholu Avatar answered Oct 07 '22 22:10

Savan Dholu


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' )
like image 41
Hossein Avatar answered Oct 08 '22 00:10

Hossein


// 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 *).

like image 5
Oliver Gehrmann Avatar answered Oct 08 '22 00:10

Oliver Gehrmann