用不习惯WordPress5.8区块小工具编辑模式怎么办?把它禁了~
其他 1080
方法一、禁止小工具模块化
function example_theme_support() {
remove_theme_support( 'widgets-block-editor' );
}
add_action( 'after_setup_theme', 'example_theme_support' );
禁止后,我们可以看到小工具还是原来习惯的模式。
方法二、安装插件Classic Widgets
安装这个插件之后,小工具的编辑模式还是和原来一样传统模式。或者我们用代码禁止
add_filter( 'gutenberg_use_widgets_block_editor', '__return_false' );
add_filter( 'use_widgets_block_editor', '__return_false' );
有很多的主题不支持兼容这个小工具编辑模式,所以我们还是去掉比较好。