Skip to content

Instantly share code, notes, and snippets.

@soderlind
Created May 5, 2020 23:39
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 soderlind/5efcf0fb53a37234f803c53a73c70dd2 to your computer and use it in GitHub Desktop.
Save soderlind/5efcf0fb53a37234f803c53a73c70dd2 to your computer and use it in GitHub Desktop.
custom logo in wp-login.php
// Add CSS within in wp-login, place in (child) theme functions.php
add_action('login_enqueue_scripts', function(){
wp_enqueue_style('login-styles', get_stylesheet_directory_uri().'/login.css');
});
//login.css, place in (child) theme folder
body .login h1 a {
background-image: url('path/to/custom-logo.png');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment