Mika MAtikainen
Apr 15, 2020 · 4 min read
How to Remove Screen Options in WordPress?
function wps_remove_screen_options() {
global $current_user;
if (!current_user_can('administrator')) {
return false;
} else {
return true;
}
}
add_filter('screen_options_show_screen', 'wps_remove_screen_options');