Skip to content

Instantly share code, notes, and snippets.

@sunnycyk
Created December 23, 2013 09:14
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 sunnycyk/8093892 to your computer and use it in GitHub Desktop.
Save sunnycyk/8093892 to your computer and use it in GitHub Desktop.
WP login Logo
/**
Add this to your functions.php file
**/
function add_login_css() {
wp_enqueue_style('login_style', get_template_directory_uri() . '/css/login.css');
}
add_action('login_head', 'add_login_css');
/**
login.css
**/
#login h1 a {
background-image: url('http://sunnycyk.local/wp-content/uploads/2013/10/cropped-sunnycyk.png') !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment