Hide ‘screen options’ tab
<?php
// Hide admin 'Screen Options' tab
function remove_screen_options_tab()
{
return false;
}
add_filter('screen_options_show_screen', 'remove_screen_options_tab');
?>
Instructions:
If you would like to completely remove the Screen Options tab from the administrator area, adding this to your functions.php file will do the trick.