1 升级WordPress5.8后切换回旧版小工具管理页面

不得不吐槽一句自从WordPress从5.2手欠点了升级5.8之后,各种bug出来了。

今天突然想改一下小工具,结果没想到WordPress5.8的小工具管理页面太难用了,不得不想办法重新切换到旧版的小工具管理页面。

在主题的function.php中加入以下代码:

// wordpress5.8使用旧版小工具设置页面
add_filter( 'gutenberg_use_widgets_block_editor', '__return_false' );
add_filter( 'use_widgets_block_editor', '__return_false' );

或者:

function example_theme_support() {
    remove_theme_support( 'widgets-block-editor' );
}
add_action( 'after_setup_theme', 'example_theme_support' );

添加之后重新刷新后台即可!