salmancreation

Change WordPress Login Logo

Jan 8th, 2015
286
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1.  
  2. This snippet allows you to change the logo you see when you login to WordPress(http://website.com/wp-admin).
  3.  
  4. <?php
  5. function custom_login_logo() {
  6.     echo '<style type="text/css">
  7.        h1 a { background-image:url('.get_bloginfo('template_directory').'/images/my-custom-login-logo.png) !important; }
  8.    </style>';
  9. }
  10. add_action('login_head', 'custom_login_logo');
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment