Custom Wordpress Admin Login


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. function my_custom_login_logo() {
  2. echo '<style type="text/css">
  3. h1 a { background-image:url('.get_bloginfo('template_directory').'/images/custom-login-logo.gif) !important; }
  4. </style>';
  5. }
  6.  
  7. add_action('login_head', 'my_custom_login_logo');

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.