如何禁用WordPress的小部件块编辑器?

问题描述 投票:0回答:5

WP 5.8 附带了一个名为“Widgets Block Editor”的新系统来管理事件。如何禁用这个新系统并恢复 WordPress 的经典小部件编辑器?

php wordpress widget wordpress-rest-api wordpress-gutenberg
5个回答
35
投票

方法一: 您想禁用古腾堡的新小部件块编辑器页面并恢复旧的小部件页面吗? 您只需将此行添加到主题的

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
文件。

方法二: 如果您不需要编辑主题的functions.php文件,安装并激活任何一个插件,旧的小部件页面就会回来:

  1. https://wordpress.org/plugins/disable-gutenberg/
  2. https://wordpress.org/plugins/classic-widgets/

经过测试并为我工作。

希望这对您有帮助。

提前致谢


7
投票

要禁用新的 WordPress 小部件编辑器系统,您可以使用以下方法之一。

1. 安装并激活 Disable Widget Block Editor 插件。

2. 使用

use_widgets_block_editor
过滤器将其禁用。您可以将以下代码放入主题 functions.php 文件或插件中。

add_filter( 'use_widgets_block_editor', '__return_false' );

3. 在主题的functions.php中使用以下代码来声明您的主题不支持新的小部件编辑器系统。

remove_theme_support( 'widgets-block-editor' )

5
投票
// 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 *)。


0
投票

您可以安装新的小部件编辑器指南中介绍的插件(而不是可能破坏您网站的代码):经典小部件


0
投票

简单地,使用WordPress的功能:

remove_theme_support( 'widgets-block-editor' );

但是,建议将其放在“after_setup_theme”挂钩中。

function example_theme_support() {
    remove_theme_support( 'widgets-block-editor' );
}
add_action( 'after_setup_theme', 'example_theme_support' );
© www.soinside.com 2019 - 2024. All rights reserved.