Created
May 18, 2013 04:27
-
-
Save iscat/5603245 to your computer and use it in GitHub Desktop.
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
// Custom WordPress Login Logo | |
function login_css() { | |
wp_enqueue_style( 'login_css', get_template_directory_uri() . '/css/login.css' ); | |
} | |
add_action('login_head', 'login_css'); |
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
#login h1 a { | |
background-image: url("login_logo.png") !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment