How to change the title attribute of WordPress login logo

Simply paste the following code snippet into your functions.php file. Title text can be customized on line 2.

function  custom_login_title() {
        return 'Your desired text';
}
add_filter('login_headertitle', 'custom_login_title');

Thanks to Dave Clements for this code!

Leave a Reply

Your email address will not be published. Required fields are marked *