Remove the screen options tab with screen_options hook

Remove the screen options tab with screen_options hook

Don’t need the “Screen Options” button? Here is a simple hack to remove it. Paste the code below into your functions.php file, save it, and you’re done.

function remove_screen_options(){

return false;

}

add_filter(‘screen_options_show_screen’, ‘remove_screen_options’);