Created
December 11, 2013 06:19
-
-
Save raphaelchaib/7905841 to your computer and use it in GitHub Desktop.
WordPress: Change WordPress dashboard colors If you ever wanted to be able to change WordPress dashboard colors (as well as font or even display) without having to edit WordPress core files, you’ll like this hack for sure.
The following example features a basic style change (grey header is replaced by a blue one) but you can easily add as many s…
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // Change wp-admin colors | |
| add_action('admin_head', 'custom_colors'); | |
| function custom_colors() { | |
| echo '<style type="text/css">#wphead{background:#069}</style>'; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment