Hey friends. Today, I was just in a discussion about what all things we need to do to make our website a BRAND. Branding included making our logo, our tagline , and many things. Many of us allow bloggers to register on our site and login to our wordpress dashboard. But when we enter the login details at the login panel, WordPress logo comes there and it doesn’t look professional. So, today we would be changing that logo to our own custom logo just like this:
Isn’t it looking Cool? So, lets customize your website’s login logo as well. Just Follow these Simple Steps.
- Upload your ‘Unique Custom Logo’ into your media folder and copy the URL of the image.
- Here, we need to edit ‘functions.php’ file of your theme. So, Open the functions.php file either from the editor or from the CPanel.
- Copy the following code into the functions.php file of your theme
function custom_login_logo() {
echo ‘<style type=”text/css”>
h1 a { background-image:url(IMAGE URL) !important; }
</style>’;
}
add_action(‘login_head’, ‘custom_login_logo’);
- Save the File and open your login page. Your New logo would be there.
Now, as you already know the previous logo was of WordPress and it was linked to the WordPress website. So, now we have to link our logo with our website.
function my_login_logo_url() {
return get_bloginfo( ‘url’ );
}
add_filter( ‘login_headerurl’, ‘my_login_logo_url’ );
function my_login_logo_url_title() {
return ‘Your Site Name and Info’;
}
add_filter( ‘login_headertitle’, ‘my_login_logo_url_title’ );
That’s All ! Enjoy!! Now your login page has your own Custom Logo with the Custom Tag line.




Praveen
Wow, so great & very easy step for change WP Login Logo, i am not believed it is changed by very easy step.
Ehsan
Changing WordPress logo to our own website logo is really a great thing to do If we are going to accept guest contributors to our blog. Thanks for the useful article Harneet!
Mairaj Pirzada
Idea of changing that logo, is very brilliant. I’ll soon change mine too. This really makes blog a Brand. Anyway thanks for the Post! I’d Appreciate your writing.
Harneet
Yes Mairaj. It really helps making your blog a brand. Keep Visiting for more articles.