Skip to content

Instantly share code, notes, and snippets.

@antoniofrignani
Created June 4, 2012 09:37
Show Gist options
  • Save antoniofrignani/2867473 to your computer and use it in GitHub Desktop.
Save antoniofrignani/2867473 to your computer and use it in GitHub Desktop.
[WP] - Remove the screen options tab with screen_options hook
// http://wpsnipp.com/index.php/functions-php/remove-the-screen-options-tab-with-screen_options_show_screen-hook/
function remove_screen_options(){
return false;
}
add_filter('screen_options_show_screen', 'remove_screen_options');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment