Wordpress- How to Change the Login page Logo URL in WordPress

Topic:

How can we change the Login page Logo URL in WordPress?

Solution:

Using below action we change the Login page Logo URL .

add_filter( 'login_headerurl', 'custom_loginlogo_url' );
function custom_loginlogo_url($url) {
    return 'http://www.your-site-url.com';
}

No comments:

Post a Comment