/ Published in: PHP
Adding this snippet to the functions.php of your wordpress theme will remove the admin color scheme from the user profile.
Expand |
Embed | Plain Text
function admin_color_scheme() { global $_wp_admin_css_colors; $_wp_admin_css_colors = 0; } add_action('admin_head', 'admin_color_scheme');
You need to login to post a comment.
