Are you looking for a way to change the title attribute of WordPress login logo? This little snippet will change the title attribute text that displays when you hover over the WordPress logo on the login page.
Instructions:
All you have to do is add this code to your theme’s functions.php file or in a site-specific plugin:
function custom_login_title() { return get_option('blogname'); } add_filter('login_headertitle', 'custom_login_title');
Note: If this is your first time adding code snippets in WordPress, then please refer to our guide on how to properly copy / paste code snippets in WordPress, so you don’t accidentally break your site.
If you want to replace the login logo, check out this snippet.
If you liked this code snippet, please consider checking out our other articles on the site like: 9 Best SEO Tools to Grow Your Website Traffic, FAST!
[…] to Dave Clements for this […]
Great snippet Dave!