Ich versuche für meine Kunden WordPress immer so einfach wie nur möglich zu gestalten.
Dazu gehört auch ein aufgeräumtes Dashboard, da diese Informationen für den Redakteur oft zu viel sind.
Mit diesem Snippet kann man die Dashboard Widgets entfernen.
Einfach in die functions.php einfügen:
// remove standard dashboard-widgets function remove_dashboard_widgets() { global $wp_meta_boxes; unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']); 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_right_now']); unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_primary']); unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary']); unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press']); unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_recent_drafts']); } add_action('wp_dashboard_setup', 'remove_dashboard_widgets' );