Skip to content

Instantly share code, notes, and snippets.

@frankschrijvers
Created October 27, 2014 16:46
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 frankschrijvers/45f7d41ba9aa359adfb9 to your computer and use it in GitHub Desktop.
Save frankschrijvers/45f7d41ba9aa359adfb9 to your computer and use it in GitHub Desktop.
// Replace WP login logo with your own
add_action('login_head', 'wpstudio_custom_login_logo');
function wpstudio_custom_login_logo() {
echo '<style type="text/css">
h1 a { background-image:url('.get_stylesheet_directory_uri().'/images/login.png) !important;
background-size: 220px 50px !important;
height: 50px !important;
width: 220px !important;
margin-bottom: 0 !important;
padding-bottom: 0 !important;
}
.login form {
margin-top: 10px !important;
}
body {
//background: #283035;
}
</style>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment