Insert Custom Login Logo

PHOTO EMBED

Wed Mar 02 2022 19:37:27 GMT+0000 (Coordinated Universal Time)

Saved by @shawna

/**
 * Insert custom login logo
 */
 
function custom_login_logo() {
    echo '
        <style>
            .login h1 a { 
                background-image: url(image.jpg) !important; 
                background-size: 234px 67px; 
                width:234px; 
                height:67px; 
                display:block; 
            }
        </style>
    ';
}
add_action( 'login_head', 'custom_login_logo' );
content_copyCOPY

https://github.com/taniarascia/wp-functions