Add Your Custom Logo to WordPress Admin Login Screen
Changing the WordPress logo in the login screen is pretty cool when you build a website to another client. Placing his logo on the login screen will give him a better feeling, like ‘wow, they REALLY thought about us’. Seeing the WordPress logo isn’t always cool, and there’s nothing to lose with this snippet.
Place it in your theme’s functions.php:
function custom_login_logo() { echo '<style>.login h1 a { background-image: url("login-logo.png"); }</style>'; } add_action('login_head', 'custom_login_logo');
Don’t forget to change the image URL to the correct one.