Ever noticed and wanted to change the link you see on the login page of your WordPress Admin panel? This simple tutorial will help you achieve it.

Procedure:

Note: Do take backup of the file you try this.

01. Place the below code in functions.php file:

<?php
add_action( 'login_headerurl', 'my_custom_login_url' );
function my_custom_login_url() {
return 'http://www.example.com';
}
?>


02. Just change http://www.example.com to the URL where you want that logo to redirect.

This concludes this simple and useful tutorial. Hope you like it.