remove other tabs in new wordpress media gallery
If you want to hide the Media Library submenu: you can do it via the admin_menu action: function wpse85351_hide_submenus() { if(!current_user_can(‘edit_posts’)){ global $submenu; unset($submenu[‘upload.php’][5]); // hide the Media Library } } add_action(‘admin_menu’, ‘wpse85351_hide_submenus’); If you want to change/remove the Media strings: you can use the media_view_strings filter: function wpse85351_media_strings($strings) { // only for subscribers: if(!current_user_can(‘edit_posts’)){ … Read more