Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save DigitalEssence/8fc7c84a14cbed855d4767281837bb31 to your computer and use it in GitHub Desktop.
Save DigitalEssence/8fc7c84a14cbed855d4767281837bb31 to your computer and use it in GitHub Desktop.
WordPress - Add company Logo to login Screen
function my_login_logo() { ?>
<style type="text/css">
#login h1 a, .login h1 a {
background-image: url(<?php echo get_stylesheet_directory_uri(); ?>/images/site-login-logo.png);
height:65px;
width:320px;
background-size: 320px 65px;
background-repeat: no-repeat;
padding-bottom: 30px;
}
</style>
<?php }
add_action( 'login_enqueue_scripts', 'my_login_logo' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment