Created
June 11, 2014 09:46
-
-
Save MattLoyeD/02240486d2e83407a28f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<?php | |
// Add to functions.php | |
add_action('login_head', 'custom_wp_login_logo'); | |
function custom_wp_login_logo() { | |
echo '<style type="text/css"> | |
h1 a { | |
background-image:url('. get_bloginfo( 'template_directory' ) .'/img/logo_backoffice.jpg) !important; | |
} | |
</style>'; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment