Skip to content

Instantly share code, notes, and snippets.

@Fl0rent
Last active March 2, 2016 14:58
Show Gist options
  • Save Fl0rent/1810439 to your computer and use it in GitHub Desktop.
Save Fl0rent/1810439 to your computer and use it in GitHub Desktop.
customise the logo of your wordpress login page
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