Last active
August 29, 2015 14:08
-
-
Save frankschrijvers/a0bb8710edf9692b3aad to your computer and use it in GitHub Desktop.
url-logo.php
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
// Change the URL of the WP login logo | |
function themebuilder_url_login_logo(){ | |
return get_bloginfo( 'wpurl' ); | |
} | |
add_filter('login_headerurl', 'themebuilder_url_login_logo'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment