Skip to content

Instantly share code, notes, and snippets.

@tevashov
Last active October 27, 2022 21:19
Show Gist options
  • Select an option

  • Save tevashov/5172459 to your computer and use it in GitHub Desktop.

Select an option

Save tevashov/5172459 to your computer and use it in GitHub Desktop.
Change WordPress Login Logo #WP
// Custom WordPress Login Logo
function login_css() {
    wp_enqueue_style( 'login_css', get_template_directory_uri() . '/css/login.css' );
}
add_action('login_head', 'login_css');
#login h1 a {
background-image: url("http://YOUR-WEBSITE.com/wp-content/themes/YOUR_THEME/images/custom_logo.png") !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment