• Posted: 2011-08-05
  • Author: Amereservant
  • Tags:

Hide ‘screen options’ tab

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
<?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.


Share this snippet

If you like this snippet, share it with friends!