Wordpress Dashboard Logo


/ Published in: Other
Save to your folder(s)



Copy this code and paste it in your HTML
  1. add_action('admin_head', 'my_custom_admin_logo');
  2. function my_custom_admin_logo() {
  3. echo “
  4. #header-logo {
  5. background: url('".get_bloginfo('template_url')."/img/custom-logo.gif’) !important;
  6. }
  7. </style>
  8. “;
  9. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.