loader image

Change Login Logo URL on WordPress Admin Page

Posted by mat

All you have to do is add this code to your theme’s functions.php file or in a site-specific plugin:

add_filter( ‘login_headerurl’, ‘my_custom_login_url’ );

function my_custom_login_url($url) {

return ‘https://www.webdevcanada.com’;}

Want us to do this for you?