How to Set Default User Registration R...
Learn how to set the default user registration role in WooCommerce by adjusting line ...

WPCodeBox
527
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');





