Next to the Help tab in every WordPress admin page sits “Screen Options.” Click it, and you can toggle columns, change pagination, hide meta boxes — powerful layout controls that are one misclick away from making the admin interface look completely wrong.
For developers, Screen Options is useful. For content editors who accidentally uncheck the “Categories” box and then can’t find it, it’s a support ticket waiting to happen.
What is Screen Options?
Screen Options is a per-screen settings panel that lets users customize what’s visible on each admin page. On the Posts list, you can toggle columns (author, categories, tags, date). On the Edit Post screen, you can show/hide meta boxes (excerpt, discussion, slug). On Settings pages, it controls items per page.
Changes are saved per-user, so each person’s layout is independent.
Why should you care?
Users break their own layout. An editor unchecks a column they need, forgets they did it, and reports a “bug.” You spend 15 minutes debugging only to find a Screen Options checkbox.
Training overhead. Explaining Screen Options to every client is time you shouldn’t need to spend.
The quick fix
// Hide Screen Options for non-administrators
add_filter( 'screen_options_show_screen', function( $show ) {
return current_user_can( 'manage_options' );
});
Administrators keep Screen Options. Everyone else sees a cleaner admin header.
The one-click solution
OvKit includes Hide Screen Options under Features → Admin. One toggle.
FAQ
### What if an editor needs to change their layout?
An administrator can adjust Screen Options on behalf of the user, or you can temporarily re-enable the tab. In practice, the default layout works fine for most users.
### Does this affect the Gutenberg editor?
No. The Gutenberg editor has its own settings panel (the three-dot menu). Screen Options only applies to classic admin screens.
Related reads: