Skip to content

Instantly share code, notes, and snippets.

@adinata-id
Last active May 23, 2026 03:49
Show Gist options
  • Select an option

  • Save adinata-id/15f00e7dab1dc55b48fb0af3bd4770d0 to your computer and use it in GitHub Desktop.

Select an option

Save adinata-id/15f00e7dab1dc55b48fb0af3bd4770d0 to your computer and use it in GitHub Desktop.
change color menu wp7 to old version
// Force the fresh color scheme for all WP Admin users, on the runtime
add_filter( 'get_user_option_admin_color', function( $result ) {
return 'fresh';
} );
// Force the color scheme for all WP Admin users, when saving their profile
add_action( 'profile_update', function( $user_id ) {
update_user_meta( $user_id, 'admin_color', 'fresh' );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment