Sunday, 19 January 2014

Remove Screen Options In Admin

Screen options in wordpress backend give extra options which may be not required for you, in order to remove screen options add a simple snippet in your functions.php file, this snippet will remove screen options in your wordpress backend.



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

No comments:

Post a Comment