• There is this small wordpress logo at the top left corner of the admin panel. How do I change that to my client’s logo. Thanks and God bless!

Viewing 1 replies (of 1 total)
  • functions.php:

    function my_head() {
      echo '
    <style type="text/css">
    #header-logo{
    background:url(images/my-logo.png) left center no-repeat;
    width:100px;
    height:32px;
    }
    </style>';
    }
    add_action('admin_head', 'my_head', 11);

Viewing 1 replies (of 1 total)
  • The topic ‘Changing logo in admin panel’ is closed to new replies.