function plt_hide_whiteboard_marketing_dashboard_widget_dashboard_widgets() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Remove the "Whiteboard Marketing News" widget.
remove_meta_box('wm_news_widget', 'dashboard', 'normal');
}
add_action('wp_dashboard_setup', 'plt_hide_whiteboard_marketing_dashboard_widget_dashboard_widgets', 20);