How to change the WordPress login page logo link
By default the login logo url points to WordPress.org. If you have a custom WordPress login logo, or a completely custom WordPress login page design, then you should probably change the login logo url to your main site.
Simply copy the code and paste the codes in your theme’s functions.php file.
function loginpage_custom_link() { return 'https://www.phpkida.com/'; } add_filter('login_headerurl','loginpage_custom_link');
By default the login logo text wordpress when you rollover the logo.
This function code will change the text when you rollover the logo.
Simply copy the code and paste the codes in your theme’s functions.php file.
function change_title_on_logo() { return 'phpkida'; } add_filter('login_headertitle', 'change_title_on_logo');
I hope you like this Article. Share with your friends.
My name is Mukesh Jakhar and I am a Web Application Developer and Software Developer, currently living in Jaipur, India. I have a Master of Computer Application in Computer Science from JNU Jaipur University. I loves to write on technology and programming topics. Apart from this, I love to travel and enjoy the beauty of nature.