How To Add Logo To WordPress Website Login Screen


Your Login your hosted WordPress then you always see on the Login screen default logo of the WordPress. Many WordPress don’t about customize back end of WordPress. This very good trick for customize of the WordPress and make beautiful and attractive your WordPress. I give this code for customize to your WordPress Login screen logo. 



 Add Logo To WordPress



Just follow few step.

>> Go to Dashboard

>> Appearance

>> Click Editor

>> Function.php

>> Paste this code in the function file


function my_custom_login_logo() {
echo '<style type="text/css">
 h1 a { background-image:url(
http://onlinefreetip.blogspot.com)!important;
}
</style>';
}
add_action('login_head','my_custom_login_logo');


Note: Don’t forget to change “http://onlinefreetip.blogspot.com” with your image for showing on the WordPress Login Screen Logo. This is very important for your image size must be “375x70px”.
Please Don't Forget to Join this Site.

Comments