Skip to main content
Login Join
Snippet · PHP

Disable WordPress Admin Color Scheme Picker

Shared by Amit Dholiya · July 6, 2026 · @remove_action

30 views
Back to Snippets

Prevent users from changing admin color schemes.

Steps

  1. Open functions.php.
  2. Add the code below.
  3. Save the file.

Done — color scheme options will disappear from profiles.

remove_action('admin_color_scheme_picker', 'admin_color_scheme_picker');
Know a different way to do this? Add your approach as a variation so folks can compare them side by side.
Submit a variation

0 comments