Skip to content

Instantly share code, notes, and snippets.

@jonbellah
Created July 28, 2013 21:02
Show Gist options
  • Save jonbellah/6100225 to your computer and use it in GitHub Desktop.
Save jonbellah/6100225 to your computer and use it in GitHub Desktop.
Login page logo
/** Change login logo. */
function cssforge_login_logo() { ?>
<style type="text/css">
body.login div#login h1 a {
background-image: url(<?php echo get_bloginfo( 'template_directory' ) ?>/images/login-logo.png);
padding-bottom: 10px;
}
</style>
<?php }
add_action( 'login_enqueue_scripts', 'cssforge_login_logo' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment