Chèn code vào file functions.php của theme
// Xóa bỏ các bảng điều khiển không mong muốn
function my_custom_dashboard_widgets()
{
global $wp_meta_boxes;
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_right_now']);
// WordPress Development Blog Feed
unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_primary']);
// Quick Press Form
unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press']);
// Remove comment
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_activity']);
}
add_action('wp_dashboard_setup', 'my_custom_dashboard_widgets');
function wporg_remove_all_dashboard_metaboxes() {
// Remove widget oceanwp and elementor
remove_meta_box( 'e-dashboard-overview', 'dashboard', 'normal');
remove_meta_box( 'owp_dashboard_news', 'dashboard', 'normal');
}
add_action( 'wp_dashboard_setup', 'wporg_remove_all_dashboard_metaboxes' );
