Home » Wordpress » How to change wordpress backend login logo

Here is code to change wordpress backend login logo. Put this code into your current theme function.php file.

1
2
3
4
5
6
7
function custom_login_logo() {
    echo '<style type="text/css">
    h1 a { background-image: url(http://webdesignermumbai.net/work/shivam/wp-content/themes/akhil/images/akhil-bharatvarshiya-logo.png) !important;width:397px !important;height:75px !important;background-size:397px 75px !important; }
    #login {width:400px !important}
    </style>';
}
add_action('login_head', 'custom_login_logo');

Incoming search terms:

Array ( [0] => Wordpress )

Leave a comment

0 Comments.

Leave a Reply

You must be logged in to post a comment.