Guest User

Untitled

a guest
Oct 18th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. /* ---------------------------------------------------------------------------------
  2. * Adding Stylesheet to wp-admin
  3. *
  4. */
  5.  
  6. function custom_login(){
  7. // Register Style
  8. wp_register_style('login-style', get_bloginfo('stylesheet_directory') . '/css/custom-login.css', array('colors'));
  9.  
  10. // Add login style
  11. wp_print_styles('login-style');
  12. }
  13. add_action('login_head', 'custom_login');
Add Comment
Please, Sign In to add comment