Skip to content

Instantly share code, notes, and snippets.

@josephhinson
Created August 3, 2015 16:20
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 josephhinson/8ddd9f43796b920c15a5 to your computer and use it in GitHub Desktop.
Save josephhinson/8ddd9f43796b920c15a5 to your computer and use it in GitHub Desktop.
Login Logo
<?php
function my_login_logo() {
// this will add a block fo css to the page that you can customize on the login page.
?>
<style type="text/css">
body.login div#login h1 a {
background-image: url(<?php echo get_bloginfo( 'stylesheet_directory' ) ?>/images/login_logo.png);
padding-bottom: 3px;
background-size: contain;
width: 100%;
height: 24px;
}
</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