Created
January 5, 2019 09:10
-
-
Save Tsunamijaan/3ab1aabe32af4ec16736c8366ab2723d to your computer and use it in GitHub Desktop.
To change the title attribute of WordPress login logo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function custom_login_title() { | |
| return 'Your desired text'; | |
| } | |
| add_filter('login_headertitle', 'custom_login_title'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment