-
Home
-
Import and export users and customers
- Tips
How to Hide the "Import and export users and customers" Admin Menu
function plt_hide_import_users_from_csv_with_meta_menus() {
//Hide the "Tools → Import and export users and customers" menu.
remove_submenu_page('tools.php', 'acui');
}
add_action('admin_menu', 'plt_hide_import_users_from_csv_with_meta_menus', 11);
Where do I put this code?
How to Hide the "Attachment" Meta Box
function plt_hide_import_users_from_csv_with_meta_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "Attachment" meta box.
remove_meta_box('email_template_attachments', $screen->id, 'side');
}
add_action('add_meta_boxes', 'plt_hide_import_users_from_csv_with_meta_metaboxes', 20);