Skip to content

Instantly share code, notes, and snippets.

@michaeloeser
Last active December 12, 2015 08:39
Show Gist options
  • Save michaeloeser/4745732 to your computer and use it in GitHub Desktop.
Save michaeloeser/4745732 to your computer and use it in GitHub Desktop.
A custom WordPress Login Logo without a Plugin
<?php
function my_custom_login_logo() {
echo '<style type="text/css">
h1 a { background-image:url('.get_bloginfo('template_directory').'/images/custom-login-logo.gif) !important; }
</style>';
}
add_action('login_head', 'my_custom_login_logo');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment