Change wp-admin login url and logo

function ahtozz_login_logo_url() {
    return home_url(); // Change this to your desired URL
}
add_filter('login_headerurl', 'ahtozz_login_logo_url');


// Change the WordPress login logo title
function ahtozz_login_logo_url_title() {
    return __('Your Site Name', 'custom_strings'); // Change this to your desired title
}
add_filter('login_headertext', 'ahtozz_login_logo_url_title');


// Change the WordPress login logo image
function ahtozz_custom_login_logo() {
    echo '<style type="text/css">
        #login h1 a {
            background-image: url(' . esc_url(get_stylesheet_directory_uri()) . '/images/custom-logo.png);
            width: 320px;
            height: 65px;
            background-size: contain;
        }
    </style>';
}
add_action('login_enqueue_scripts', 'ahtozz_custom_login_logo');

Leave a Reply