Created
July 16, 2012 17:43
-
-
Save smonteverdi/3123964 to your computer and use it in GitHub Desktop.
WordPress: Custom login logo
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 Login Logo | |
add_action("login_head", "my_login_head"); | |
function my_login_head() { | |
echo " | |
<style> | |
body.login #login h1 a { | |
background: url('".get_bloginfo('template_url')."/assets/images/admin-logo.png') no-repeat scroll center top transparent; | |
height: 128px; | |
width: 325px; | |
} | |
</style> | |
"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment