新的小工具区块编辑器使用起来其实很不方便,如何禁用新的小工具区块编辑器?
您需要在主题的functions.php文件里面添加以下代码即可
/**
* 禁用新的小工具区块编辑器
*/
function example_theme_support() {
remove_theme_support( ‘widgets-block-editor’ );
}
add_action( ‘after_setup_theme’, ‘example_theme_support’ );
新的小工具区块编辑器使用起来其实很不方便,如何禁用新的小工具区块编辑器?
您需要在主题的functions.php文件里面添加以下代码即可
/**
* 禁用新的小工具区块编辑器
*/
function example_theme_support() {
remove_theme_support( ‘widgets-block-editor’ );
}
add_action( ‘after_setup_theme’, ‘example_theme_support’ );