Answers for "disable wordpress block editor"

PHP
0

wordpress disable editor

// On wp-config.php
define( 'DISALLOW_FILE_EDIT', true );
Posted by: Guest on June-05-2020
0

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' );
Posted by: Guest on September-03-2021

Browse Popular Code Answers by Language