非常不喜歡這些主題、插件自帶的新聞小工具,因為老實説很礙事,而且沒啥大用處。 YITH WooCommerce 插件在新版本中會自帶幾個後台 News 新聞小工具塊,為了加速網站還是刪掉比較好。

將下面的代碼添加到主題或子主題的 function.php 文件裏。
// 刪除 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' );