How to remove “WordPress News” feed downloading?
I am not 100% certain if you are looking for a way to remove the Meta-boxes? If so, following plugin could solve your ‘issue’. (please backup and so on …) /** * Remove Dashboard widgets * * @version WordPress 4.6.1 */ add_action( ‘wp_dashboard_setup’, ‘wpse241195_disable_dashboard_widgets’ ); function wpse241195_disable_dashboard_widgets() { remove_meta_box( ‘dashboard_incoming_links’, ‘dashboard’, ‘normal’ ); // Incoming … Read more