WordPress 5.8 切换小工具Widgets经典模式

WordPress官方特意推出了Classic Widgets这个插件,只需要安装并且激活就行了。

插件下载:https://wordpress.org/plugins/classic-widgets/

如果不想用插件,直接复制下面代码添加到主题函数文件里面保存也可以。

// Disables the block editor from managing widgets in the Gutenberg plugin.
add_filter( 'gutenberg_use_widgets_block_editor', '__return_false' );
// Disables the block editor from managing widgets.
add_filter( 'use_widgets_block_editor', '__return_false' );
(0)

相关推荐