Quantcast
Channel: TaimoorSultan.com » Tutorials
Viewing all articles
Browse latest Browse all 18

Change URL of Login Page Logo in WordPress

$
0
0

Changing the URL of login page Logo is important and very useful in terms of keep your visitors stay on your page. Yesterday I posted about How to Change the Logo of Login Page in WordPress. But when you have changed the logo to your own brand, then I think you will also like to point that custom logo to your own website homepage instead of WordPress.org. Lets know how to do this.

Changing URL of Login Page Logo in WordPress

1. Go to your WordPress Admin Dashboard >>> Appearance >>> Editor.

2. Click on the File Theme Functions (functions.php) and it will opened for editing.

3. Paste this code into functions.php

{code type=php}

<?php
add_filter( ‘login_headerurl’, ‘custom_loginlogo_url’ );
function custom_loginlogo_url($url) {
return ‘http://www.taimoorsultan.com’;
}
?>

{/code}

4. And, dont forget to change the URL in above code from taimoorsultan.com to your own desired URL.

The post Change URL of Login Page Logo in WordPress appeared first on TaimoorSultan.com.


Viewing all articles
Browse latest Browse all 18

Trending Articles