updated   : May 15, 2012
we now have 588 snippets
By : , on October 03, 2011 9:00 am

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');