Skip to content

Instantly share code, notes, and snippets.

@andyknapp
Last active December 18, 2015 17:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andyknapp/5819721 to your computer and use it in GitHub Desktop.
Save andyknapp/5819721 to your computer and use it in GitHub Desktop.
Custom logo on WP login screen
function ak_custom_login_logo() {
wp_enqueue_style( 'ak_custom_login_logo', get_stylesheet_directory_uri() . '/login.css' );
}
add_action('login_head', 'ak_smj_custom_login_logo');
#login h1 a {
background-image: url("http://sitename.com/wp-content/themes/themename/images/logo-wp.png")!important;
background-size: 280px 115px;
height: 100px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment