Skip to content

Instantly share code, notes, and snippets.

@spencejs
Created March 22, 2013 04:55
Show Gist options
  • Select an option

  • Save spencejs/5219027 to your computer and use it in GitHub Desktop.

Select an option

Save spencejs/5219027 to your computer and use it in GitHub Desktop.
Custom Stylesheet For Wordpress Login Page
//Custom Login Page
function custom_login() {
echo '<link rel="stylesheet" type="text/css" href="'.get_bloginfo('template_directory').'/custom-login/custom-login.css" />';
}
add_action('login_head', 'custom_login');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment