-
Home
-
Material Dashboard
- Tips
function plt_hide_material_dashboard_menus() {
remove_menu_page('material-dashboard');
remove_submenu_page('material-dashboard', 'material-dashboard');
remove_submenu_page('material-dashboard', 'amd-settings');
remove_submenu_page('material-dashboard', 'amd-appearance');
remove_submenu_page('material-dashboard', 'amd-menu');
remove_submenu_page('material-dashboard', 'amd-tools');
remove_submenu_page('material-dashboard', 'amd-data');
remove_submenu_page('material-dashboard', 'amd-security');
remove_submenu_page('material-dashboard', 'amd-wizard');
remove_submenu_page('material-dashboard', 'amd-tasks');
remove_submenu_page('material-dashboard', 'amd-ext');
remove_submenu_page('material-dashboard', 'amd-themes');
remove_submenu_page('material-dashboard', 'amd-hooks');
remove_submenu_page('material-dashboard', 'amd-sms-webservices');
remove_submenu_page('material-dashboard', 'amd-more');
}
add_action('admin_menu', 'plt_hide_material_dashboard_menus', 11);
Where do I put this code?