Change logo url and alternate text
-
// changing the logo link from www.remarpro.com to your site function my_login_url() { return get_home_url(); } // changing the alt text on the logo to show your site name function my_login_title() { return get_option('blogname'); } // calling it only on the login page add_filter('login_headerurl', 'my_login_url'); add_filter('login_headertitle', 'my_login_title');
Adding this will change the url and alternate text for the logo to the blogs information instead of www.remarpro.com
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Change logo url and alternate text’ is closed to new replies.