Home / Admin / Changing the WordPress Login Logo URL
Duplicate Snippet

Embed Snippet on Your Site

Changing the WordPress Login Logo URL

function custom_login_logo_url() {
return home_url(); // Or your desired URL
}
add_filter( 'login_headerurl', 'custom_login_logo_url' );

Code Preview
php
<?php
function custom_login_logo_url() {
    return home_url(); // Or your desired URL
}
add_filter( 'login_headerurl', 'custom_login_logo_url' );

Comments

Add a Comment