Hiding menu items
-
Hi there,
I am trying to hide these menu items for only but a few specified admin users:
I’ve tried fiddling around with
remove_menu_page()
andremove_submenu_page()
in my theme’s functions.php but neither method seems to work.function CustomDashboard_menus () { // if userID isn't 2 and 438, hide these menu items $allowed_ids = array(2,438); if(!in_array(get_current_user_id(), $allowed_ids)) { // PARTICIPANTS DATABASE // remove_menu_page( 'participants-database' ); // List Participants // Add Participant // Manage Database Fields remove_menu_page( 'participants-database-manage_fields' ); // Manage List Columns remove_menu_page( 'participants-database-manage_list_columns' ); // Import CSV File remove_menu_page( 'participants-database-upload_csv' ); // Settings remove_menu_page( 'participants-database_settings_page' ); // Setup Guide remove_menu_page( 'participants-database-setup_guide' ); } } add_action( 'admin_menu', 'CustomDashboard_menus', 999 );`
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Hiding menu items’ is closed to new replies.