Hi,
You can use this code to remove the WordPress Events and News widget
add_action( 'wp_dashboard_setup', function() {
remove_meta_box( 'dashboard_primary', 'dashboard', 'side' );
} );
and this code to remove Meta Box menu from dashboard menus
add_action( 'admin_init', 'remove_menu_metabox' );
function remove_menu_metabox() {
if ( !current_user_can( 'administrator' ) ) { //change role or capability here
remove_menu_page( 'meta-box' );
}
}
Refer to these articles
https://metabox.io/remove-unwanted-meta-boxes-wordpress/
https://support.metabox.io/topic/hiding-meta-box-plugin-from-wordpress-dashboard-menu-for-non-admins/