ダッシュボードから不要なものを削除

ダッシュボードにデフォルトで存在する
「WordPress ブログ」や「WordPress フォーラム」は
正直クライアントからは必要ないので削除する。

hijiriworld Webさまにやりたい事そのものが掲載されているので、これを改変するだけ。
公式は Dashboard Widgets API の中盤以降にある「Advanced: Removing Dashboard Widgets」あたり。

function katz_remove_dashboard_widgets() {
  global $wp_meta_boxes;
  unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments']);
  unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links']);
  unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']);
  unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press']);
  unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_recent_drafts']);
  unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_primary']);
  unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary']);
}
add_action('wp_dashboard_setup', 'katz_remove_dashboard_widgets');

できたできた。