Aggiungendo questo snippet al file functions.php del vostro tema WordPress verrà rimosso il tab “screen options”.

 
function remove_screen_options(){
return false;
}
add_filter(‘screen_options_show_screen’, ‘remove_screen_options’);
 

fonte: www.sastgroup.com ? Vai al post originale