gpt4 book ai didi

php - 如何禁用WordPress的小部件 block 编辑器?

转载 作者:行者123 更新时间:2023-12-04 12:06:54 24 4
gpt4 key购买 nike

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

最佳答案

方法一:
您想禁用古腾堡的新小部件块编辑器页面并带回旧的小部件页面吗?
您只需将此行添加到主题的 中即可完成此操作。 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 文件,请安装并激活此插件,旧的小部件页面将返回:
https://wordpress.org/plugins/disable-widget-block-editor/
经过测试并为我工作。
希望这对你有帮助。
提前致谢

关于php - 如何禁用WordPress的小部件 block 编辑器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68419688/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com