Last active
July 13, 2022 07:46
-
-
Save texe/0b77d96e6f40b9d573ca9f6022ef07ba to your computer and use it in GitHub Desktop.
WordPress - Change logo url on WordPress' login page
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
// Change logo url on WordPress login page | |
add_filter( 'login_headerurl', 'custom_loginlogo_url' ); | |
function custom_loginlogo_url($url) { | |
return 'https://madlon.eu'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment