add_filter('login_title', custom_login_title, 99);
function custom_login_title($origtitle) {
return get_bloginfo('name');
}
```
6. Click on the Update file button to save your changes to the functions.php file. Following are the final changes.
7. Before:

8. After:

## More information
For more information about applying filters to the login title, please visit: [https://developer.wordpress.org/reference/hooks/login_title/](https://developer.wordpress.org/reference/hooks/login_title/)
## Related articles
- [Changing Fonts in WordPress](/docs/change-the-font-in-wordpress)
- [Changing the WordPress language](/docs/changing-the-wordpress-language)
- [Configuring the WordPress heartbeat](/docs/configuring-the-wordpress-heartbeat)