Skip to content

Instantly share code, notes, and snippets.

@marczhermo
Created May 20, 2012 12:41
Show Gist options
  • Select an option

  • Save marczhermo/2757981 to your computer and use it in GitHub Desktop.

Select an option

Save marczhermo/2757981 to your computer and use it in GitHub Desktop.
Wordpress: Custom Logo
// 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