Reply To: Replace login logo

Home Forums Support Replace login logo Reply To: Replace login logo

Home Forums Support Replace login logo Reply To: Replace login logo

#181407
Mo

Hi Tom,
The code you supplied was added to the functions.php and it worked the treat.
Thanks.

With a brief search on wordpress.org, I found the additional code required to change the hover title and the link.
It also works perfectly.

    // changing the login page URL
    function put_my_url(){
    return ('HTTP://WWW.YOUR-DOMAIN.COM/'); // putting my URL in place of the WordPress one
    }
    add_filter('login_headerurl', 'put_my_url');

    // changing the login page URL hover text
    function put_my_title(){
    return ('NAME OF YOUR WEBSITE'); // changing the title from "Powered by WordPress" to whatever you wish
    }
    add_filter('login_headertitle', 'put_my_title');

Mo