Remove admin color scheme options from user profile
wordpress snippet
This is an alternative method to the one I posted some time ago, “Remove admin color scheme picker from profile” Adding this snippet to the functions.php of your wordpress theme will remove the admin color scheme from the user profile.
snippet : PHPcopy
function admin_color_scheme() {
global $_wp_admin_css_colors;
$_wp_admin_css_colors = 0;
}
add_action('admin_head', 'admin_color_scheme');












Pingback: Daily Tip: How to Remove Admin Color Scheme Options in WordPress