WordPress – How to Hide the Screen Options Tab

--> (Word) --> (PDF) --> (Epub) --> (Text)
--> (XML) --> (OpenOffice) --> (XPS)
This article has been published [fromdate]
[readtime]

This tip comes to your courtesy of our friends over at WP-Snippets.com. When it comes to WordPress post editing, sometimes the fewer options for tinkering with, the better. There are users who can get confused by all that’s available in the editor.

remove-screen-options

This snippet of code will completely remove the Screen Options tab from the administrator area.

Drop this into the functions.php file of your theme:

// Hide admin 'Screen Options' tab
function remove_screen_options_tab()
{
    return false;
}
add_filter('screen_options_show_screen', 'remove_screen_options_tab');
SOURCE

LINK (Wpmu.org)

LANGUAGE
ENGLISH