WP 5.8 带有一个新系统来管理名为“小部件块编辑器”的事件。如何禁用这个新系统并恢复 WordPress 的经典小部件编辑器?
答案 0 :(得分:4)
方法一:
您想禁用古腾堡的新小部件块编辑器页面并带回旧的小部件页面吗?
您只需将此行添加到主题的 functions.php
文件中即可:
// 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. renamed from wp_use_widgets_block_editor
add_filter( 'use_widgets_block_editor', '__return_false' );
不要忘记保存functions.php
文件。
方法 2: 如果你不需要编辑你的主题的functions.php文件,安装并激活这个插件,旧的widgets页面就会回来:
https://wordpress.org/plugins/disable-widget-block-editor/
经过测试并为我工作。
希望对你有帮助。
提前致谢
答案 1 :(得分:2)
// 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' );
其中一个过滤器似乎已重命名。它不再是“wp_use_widgets_block_editor”,而是“use_widgets_block_editor”。 应该编辑@Savan Dholu 投票最多的答案以反映这一点(恐怕我无法发表评论,因为我缺少足够的声誉 * ROLLEYES *)。
答案 2 :(得分:0)
要禁用新的 WordPress 小部件编辑器系统,您可以使用以下方法之一。
安装并激活 Disable Widget Block Editor 插件。
使用 use_widgets_block_editor
过滤器禁用它。您可以将以下代码放入主题 functions.php
文件或插件中。
add_filter( 'use_widgets_block_editor', '__return_false' );
在您的主题中使用 remove_theme_support( 'widgets-block-editor' )
代码声明您的主题不支持新的小部件编辑器系统。
答案 3 :(得分:0)
您可以安装新窗口小部件编辑器指南中引入的插件(而不是可能破坏您网站的代码):Classic Widgets