Remove the screen options tab with screen_options hook
wordpress snippet
Adding this snippet to the functions.php of your wordpress theme will remove the screen options tab.
snippet : PHPcopy
function remove_screen_options(){
return false;
}
add_filter('screen_options_show_screen', 'remove_screen_options');






