wordpress 恢复旧版 小工具 Classic Widgets 恢复旧版编辑器 disable Gutenberg 禁用古腾堡
点击数: 669
有很多人大概不习惯新版的小工具和编辑器
wordpress 恢复旧版 小工具 Classic Widgets 恢复旧版编辑器 disable Gutenberg 禁用古腾堡
可以打开主题functions.php
在适当的位置插入
- //Classic Widgets 恢复旧版小工具
- function example_theme_support() {
- remove_theme_support( 'widgets-block-editor' );
- }
- add_action( 'after_setup_theme', 'example_theme_support' );
- // disable Gutenberg 禁用古腾堡 恢复旧版编辑器
- add_filter('use_block_editor_for_post', '__return_false', 10);