For the admin (possibly just super admin), disabling the color scheme option disables the admin bar option as well.
For the admin (possibly just super admin), disabling the color scheme option disables the admin bar option as well.
current is non an option for this requirement.
you can use the follow snippet
function admin_color_scheme() {
global $_wp_admin_css_colors;
$_wp_admin_css_colors = 0;
}
add_action('admin_head', 'admin_color_scheme');This topic has been closed to new replies.