Adding a Custom Dashboard Logo in WordPress for Branding
When creating themes for clients, you might want to provide them with some administrative branding. The first and easiest way to do that is by replacing the WordPress logo with your Custom Logo in the admin dashboard.
First you would need to create an image that has the dimensions of 30px wide and 31px tall. This image would need to be transparent either .gif or .png. The image matte color must match the background color which has the hex value of #464646.
Save that image in your theme’s image folder (/wp-content/themes/theme-name/images) and name it whatever you like. In this example we will be naming it custom-logo.gif.
Now open your functions.php file located in your themes folder and add the following function in there:
//hook the administrative header output
add_action('admin_head', 'my_custom_logo');function my_custom_logo() {
echo '
<style type="text/css">
#header-logo { background-image: url('.get_bloginfo('template_directory').'/images/custom-logo.gif) !important; }
</style>
';
}
By adding this function, you are telling WordPress to add a function my_custom_logo in the field admin_head. This function will replace the original WordPress ‘W’ with your custom logo.
This is how it would look:

This trick is from Jacob Goldman’s Article on Smashing Magazine
Comments
7 Responses to “Adding a Custom Dashboard Logo in WordPress for Branding”Share Your Opinions
Tell us what you're thinking...
and if you want a pic to show with your comment, then get gravatar!
Please make sure that you have read our Comment Policy.










I can see how this would benefit larger blogs. Having multiple authors logging in many different blogs, it’s good to have your backend stand out. I may have to implement this
how if direct replace image?
Sorry don’t understand what you are trying to ask.
I think Robin means “how about if we just replace the default image manually”
Well, if you do that, when upgrading to a newer version of WP, your logo will get overwritten and you’ll end up having the same WordPress logo in the admin
Thanks for posting this, it’s really simple to do and I think it adds a nice detail for clients.
Great tutorial. I will make that in my personal site that uses WordPress. Congratulations.
Unfortunately this is no more in 3.0. I was messing around with it the other day, but, didn’t come up with the proper solution … too tired maybe? but, they have combined what used to be the logo, and the visit site button. So, if you have this implemented, you have no link to the site unfortunately. If anyone works out a fix, I’m sure all of us who’ve implemented this would love to hear it