Skip to content

Instantly share code, notes, and snippets.

@texe
Last active July 13, 2022 07:46
Show Gist options
  • Save texe/0b77d96e6f40b9d573ca9f6022ef07ba to your computer and use it in GitHub Desktop.
Save texe/0b77d96e6f40b9d573ca9f6022ef07ba to your computer and use it in GitHub Desktop.
WordPress - Change logo url on WordPress' login page
// 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