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 .

1
2
3
4
add_filter( 'login_headerurl', 'custom_loginlogo_url' );
function custom_loginlogo_url($url) {
}

No comments:

Post a Comment