Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

disable block editor on widget section wordpress

// 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' );
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #disable #block #editor #widget #section #wordpress
ADD COMMENT
Topic
Name
9+2 =