Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joseluis/7985711 to your computer and use it in GitHub Desktop.
Save joseluis/7985711 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'get_user_option_admin_color', function( $color_scheme ) {
global $_wp_admin_css_colors;
if ( ! isset( $_wp_admin_css_colors[ $color_scheme ] ) ) {
$color_scheme = 'ectoplasm';
}
return $color_scheme;
}, 5 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment