Skip to content

Instantly share code, notes, and snippets.

@frankschrijvers
Last active August 29, 2015 14:08
Show Gist options
  • Select an option

  • Save frankschrijvers/5884580b307620c00a67 to your computer and use it in GitHub Desktop.

Select an option

Save frankschrijvers/5884580b307620c00a67 to your computer and use it in GitHub Desktop.
// Replace WP login logo with your own
add_action('login_head', 'themebuilder_custom_login_logo');
function themebuilder_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;
}
</style>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment