Custom Admin Login Logo Link


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



Copy this code and paste it in your HTML
  1. // CUSTOM ADMIN LOGIN LOGO LINK
  2.  
  3. function change_wp_login_url()
  4. {
  5. echo bloginfo('url'); // OR ECHO YOUR OWN URL
  6. }add_filter('login_headerurl', 'change_wp_login_url');

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.