Default admin color scheme as “blue” olatechproFebruary 16, 20232 Views I don’t like the grey one and i’d rather not change each user. Thanks. Post Views: 2 Related postsGet rid of this Strict Standards warningWooCommerce: get_current_screen not working with multi languageCan’t login on WordPressForce HTTPS using .htaccess – stuck in redirect loopWordPress: Ajax not working to insert, query and result dataHow Can I pass an image file to wp_handle_upload?
I don’t see easy way to change default so far, fresh color scheme seems to be hardcoded in plenty of places. If you just need to force some specific scheme for all users it can be done with this: add_filter('get_user_option_admin_color','change_admin_color'); function change_admin_color($result) { return 'classic'; } Log in to Reply
I don’t see easy way to change default so far,
fresh
color scheme seems to be hardcoded in plenty of places.If you just need to force some specific scheme for all users it can be done with this: