Do you want to customize the Register link on your WordPress login page? If user registration is allowed on your site, you can see a Register link on your login page, just below the sign in box. With our snippet, you can easily change the Register text to any other such as Sign Up.
Instructions:
All you have to do is add this code to your theme’s functions.php file or in a site-specific plugin:
add_filter( 'gettext', 'register_text' ); add_filter( 'ngettext', 'register_text' ); function register_text( $translated ) { $translated = str_ireplace( 'Register', 'Sign Up', $translated ); return $translated; }
Note: If this is your first time adding code snippets in WordPress, then please refer to our guide on how to properly copy / paste code snippets in WordPress, so you don’t accidentally break your site.
If you liked this code snippet, please consider checking out our other articles on the site like: 62 best free WordPress blog themes or 7 best WordPress contact form plugins.
Thanks! Worked great.
Glad it helped, Elliott!
God bless you. This sure saved me.
Thanks!
can i ask how to make the “sign up” word bigger and bold font? and the “lost password” be smaller. thank you very much for the help.
Thanks for this 🙂 really save me a lot of time.
No problem Jen, glad I could help!
Hello Kevin,
Would you plase help me change “Lost your password?” text too?
Thanks alot.
I have a snippet that should help you out with that.
http://wpsnipp.com/index.php/functions-php/remove-the-lost-your-password-link/