title

Hide admin color scheme options from user profile

 

Hide admin color scheme options from user profile

13 Mai 2013, Posted by antoine in

Adding this code to your theme’s functions.php will hide the admin color scheme from the user profile page in admin section.

function admin_color_scheme() {
   global $_wp_admin_css_colors;
   $_wp_admin_css_colors = 0;
}
add_action('admin_head', 'admin_color_scheme');