Created
February 7, 2014 22:08
-
-
Save ericnkatz/8873005 to your computer and use it in GitHub Desktop.
quick wordpress login background to black and whatever other styles you want
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
function custom_loginpage_head() | |
{ | |
?> | |
<style> | |
body.login { | |
background:#000 !important; | |
} | |
</style> | |
<?php | |
} | |
add_action("login_head","custom_loginpage_head"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment