由于wordpress对区块编辑器的大力支持,逐步取消了经典编辑器,但是以前的小工具会提示丢失,不过wordpress官方提供了解决方法,提供了可以继续使用经典小工具的插件,用户可以下载安装,由于安装插件比较麻烦,大家可以自己复制一下代码到自己主题的function.php中即可解决,主题盒子团队会持续关注新版小工具的更新,在wordpress版本彻底稳定后,统一更新所有主题的小工具用来适配最新版小工具。

// Disables the block editor from managing widgets in the Gutenberg plugin.
add_filter( 'gutenberg_use_widgets_block_editor', '__return_false' );
// Disables the block editor from managing widgets.
add_filter( 'use_widgets_block_editor', '__return_false' );