Skip to content

Instantly share code, notes, and snippets.

@ryanfitton
Created September 15, 2014 07:45
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 ryanfitton/67ac374a35c6450cb84a to your computer and use it in GitHub Desktop.
Save ryanfitton/67ac374a35c6450cb84a to your computer and use it in GitHub Desktop.
functions.php - Custom login
<?php
/**
* Created September 2014
* @author Ryan Fitton
* @copyright Copyright (c) 2014, Ryan Fitton
*/
//Customer WordPress login styling
function custom_login_css() {
wp_enqueue_style( 'custom-login', get_template_directory_uri() . '/custom-login.css' );
}
add_action( 'login_enqueue_scripts', 'custom_login_css' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment