How to Replace the WordPress Dashboard...
Easily replace the default WordPress dashboard news feed with any custom RSS feed usi...

WPCodeBox
310

This WordPress snippet helps users effectively remove unwanted widgets from their WordPress Dashboard, streamlining their administrative interface.
<?php
function custom_remove_dashboard_widgets()
{
global $wp_meta_boxes;
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']);
unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary']);
}
add_action('wp_dashboard_setup', 'custom_remove_dashboard_widgets');





