Mit folgendem Zusatz in der functions.php von WordPress kann man das Logo, welches über dem Login-Formular angezeigt wird, abändern.
Hinweis: funktioniert nur bei self-hosted, standalone WordPress (Multisite und wordpress.com nicht)
function ale_login_logo() { ?>
<style type="text/css">
body.login div#login h1 a {
background:#fff url(<?php echo get_template_directory_uri() ?>/logo.png) 50% 50% no-repeat;
height:189px;
width:197px;
background-size: auto auto;
}
body.login div#login {
background:#fff;
}
body.login {
background:#fff
}
body.login #backtoblog {
display:none;
}
body.login #nav {
text-align:center;
}
</style>
<?php }
add_action( 'login_enqueue_scripts', 'ale_login_logo' );