如何删除 YITH WooCommerce 插件的后台 News 新闻小工具

非常不喜欢这些主题、插件自带的新闻小工具,因为老实说很碍事,而且没啥大用处。YITH WooCommerce 插件在新版本中会自带几个后台 News 新闻小工具块,为了加速网站还是删掉比较好。
仿牌独立站出海专家


// 删除 YITH 插件的产品 News 新闻小工具
function yith_remove_dashboard_meta() {
remove_meta_box( 'yith_dashboard_products_news', 'dashboard', 'normal' );
}
add_action( 'admin_init', 'yith_remove_dashboard_meta' );

// 删除 YITH 插件的博客 News 新闻小工具
function yith_blog_news_remove_dashboard_meta() {
remove_meta_box( 'yith_dashboard_blog_news', 'dashboard', 'normal' );
}
add_action( 'admin_init', 'yith_blog_news_remove_dashboard_meta' );