Skip to content

Instantly share code, notes, and snippets.

@rachelbaker
Created January 5, 2012 16:41
Show Gist options
  • Save rachelbaker/1566044 to your computer and use it in GitHub Desktop.
Save rachelbaker/1566044 to your computer and use it in GitHub Desktop.
WordPress Custom Login Logo Function
// Custom login logo for wp-admin screen //
function pic_custom_login_logo() {
echo '<style type="text/css">
h1 a { background-image:url('.get_bloginfo('template_directory').'/images/login-logo.png) !important; }
</style>';
}
add_action('login_head', 'pic_custom_login_logo');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment