Skip to content

Instantly share code, notes, and snippets.

@iscat
Created May 18, 2013 04:27
Show Gist options
  • Save iscat/5603245 to your computer and use it in GitHub Desktop.
Save iscat/5603245 to your computer and use it in GitHub Desktop.
// 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');
#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