Created
May 20, 2012 12:41
-
-
Save marczhermo/2757981 to your computer and use it in GitHub Desktop.
Wordpress: Custom Logo
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
| // 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'); | |
| // CSS File | |
| #login h1 a { | |
| background-image: url("address-of-logo.png") !important | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment