Skip to content

Instantly share code, notes, and snippets.

@jayseventwo
Created April 24, 2013 03:57
Show Gist options
  • Save jayseventwo/5449510 to your computer and use it in GitHub Desktop.
Save jayseventwo/5449510 to your computer and use it in GitHub Desktop.
Enable styling of the WordPres login page. Add to custom.php in Roots theme.
function custom_login_css() {
echo '<link rel="stylesheet" type="text/css" href="'.get_stylesheet_directory_uri().'/assets/css/app.css" />';
}
add_action('login_head', 'custom_login_css');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment