怎么现在的wordpress小工具这么难用,有什么办法么?
共以下 2 个回答:
使用插件 Classic Widgets 恢复经典小工具
// 切换小工具经典编辑器(加入到主题文件functions.php里面)
function example_theme_support() {
remove_theme_support( 'widgets-block-editor' );
}
add_action( 'after_setup_theme', 'example_theme_support' );
function example_theme_support() {
remove_theme_support( 'widgets-block-editor' );
}
add_action( 'after_setup_theme', 'example_theme_support' );