Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rsharrer/6714587 to your computer and use it in GitHub Desktop.
Save rsharrer/6714587 to your computer and use it in GitHub Desktop.
Remove the screen options tab with screen_options 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