Last active
December 31, 2015 21:09
-
-
Save cdcarson/8045326 to your computer and use it in GitHub Desktop.
filter the title attribute of the login header image
This file contains 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
<?php | |
add_filter( | |
'login_headertitle', | |
function($title){ | |
return get_bloginfo('name'); | |
}, 10, 1 | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment