/ Published in: PHP
Remove color scheme on user profile page. Add this to theme's functions.php
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function cusmin_theme_remove_color_scheme(){ remove_action( 'admin_color_scheme_picker', 'admin_color_scheme_picker' ); } add_action('admin_init', 'cusmin_theme_remove_color_scheme'); }
URL: php, wordpress