Skip to content

Instantly share code, notes, and snippets.

@maddisondesigns
Created June 10, 2026 06:12
Show Gist options
  • Select an option

  • Save maddisondesigns/6fe65aa31220cce5529a85af0a96aad8 to your computer and use it in GitHub Desktop.

Select an option

Save maddisondesigns/6fe65aa31220cce5529a85af0a96aad8 to your computer and use it in GitHub Desktop.
Automatically set WordPress Administration Color Scheme to previous default (Fresh) colour scheme, for all users
/**
* Automatically set Administration Color Scheme to previous default (Fresh) colour scheme, for all users
*/
function set_admin_color_scheme( $color_scheme ) {
return 'fresh';
}
add_filter( 'get_user_option_admin_color', 'set_admin_color_scheme', 10 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment