Skip to content

Instantly share code, notes, and snippets.

@mateusneves
Created June 14, 2016 02:43
Show Gist options
  • Save mateusneves/0f346037cae0a19a54066dcb3734b3e2 to your computer and use it in GitHub Desktop.
Save mateusneves/0f346037cae0a19a54066dcb3734b3e2 to your computer and use it in GitHub Desktop.
WordPress load custom login style file
function my_custom_login() {
echo '<link rel="stylesheet" type="text/css" href="' . get_bloginfo('stylesheet_directory') . '/css/custom-login.css" />';
}
add_action('login_head', 'my_custom_login');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment