Skip to content

Instantly share code, notes, and snippets.

@MattLoyeD
Created June 11, 2014 09:46
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 MattLoyeD/02240486d2e83407a28f to your computer and use it in GitHub Desktop.
Save MattLoyeD/02240486d2e83407a28f to your computer and use it in GitHub Desktop.
<?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