Created
July 28, 2013 21:02
-
-
Save jonbellah/6100225 to your computer and use it in GitHub Desktop.
Login page logo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** 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