How To Change Login Logo URL In Your WordPress Site ?

Now you you how to customize your WordPress login screenLimit 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’;
}
?>

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.