How do you add a custom link to the wordpress login page?
Well, you can add link after lost your password, but I don’t think you can add link before lost your password link unless you design your own login page. function hook_lost_your_password ( $text ) { if ($text == ‘Lost your password?’){ $text .= ‘<br /><a href=”http://codebing.com”>Visit Code Bing</a>’; } return $text; } add_filter( ‘gettext’, ‘hook_lost_your_password’ … Read more