Now you you how to customize your WordPress login screen, Limit Access To WordPress Login Page and Customizing Logo Of WordPress Login Page. Here in this tutorial I am discussing about adding a custom link to your WordPress login logo as default logo link points to WordPress.org
Simply open your theme’s function.php file and add the following code changing yourdomain.com to your address:
<?php
add_filter( ‘login_headerurl’, ‘custom_loginlogo_url’ );
function custom_loginlogo_url($url) {
return ‘http://yourdomain.com’;
}
?>