Añadir a functions.php añadir el siguiente código:
function my_login_logo() { ?> <style type="text/css"> #login h1 a, .login h1 a { background-image: url(<?php echo get_stylesheet_directory_uri(); ?>/images/site-login-logo.png); padding-bottom: 30px; } </style> <?php } add_action( 'login_enqueue_scripts', 'my_login_logo' );
En ‘/images/site-login-logo.png’ habrá que sustituir /images por el directorio donde esté la imagen y site-login-logo.png por el nombre de la imagen real. Esta tendrá que tener un tamaño de 80×80 pixels.