Skip to content

Instantly share code, notes, and snippets.

@wpmu-authors
Created September 28, 2022 20:37
Show Gist options
  • Save wpmu-authors/ef406e4262a219d960867b6b12c129c4 to your computer and use it in GitHub Desktop.
Save wpmu-authors/ef406e4262a219d960867b6b12c129c4 to your computer and use it in GitHub Desktop.
<?php
//If you're using this in your functions.php file, remove the opening <?php
//Replace style-login.css with the name of your custom CSS file
function my_custom_login_stylesheet() {
wp_enqueue_style( 'custom-login', get_stylesheet_directory_uri() . '/style-login.css' );
}
//This loads the function above on the login page
add_action( 'login_enqueue_scripts', 'my_custom_login_stylesheet' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment