Modifier le logo de connexion à WordPress.

PHP
                    <?php 
function undfnd_edit_login_logo() { 
?>
    <style type="text/css">
        .login #login h1 a {
            background-image: url('<?php echo get_stylesheet_directory_uri(); ?>/images/votre-nouveau-logo.png');
        }
    </style>
<?php }
add_action( 'login_enqueue_scripts', 'undfnd_edit_login_logo' );