Custom Admin Login Logo & Alt Text


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



Copy this code and paste it in your HTML
  1. // CUSTOM ADMIN LOGIN LOGO & ALT TEXT
  2.  
  3. function change_wp_login_title()
  4. {
  5. echo get_option('blogname'); // OR ECHO YOUR OWN ALT TEXT
  6. }add_filter('login_headertitle', 'change_wp_login_title');

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.