Registration

Redirect WordPress Page

How to Create Custom Registration URL in WordPress without Plugin

To fight spam registration, this could be helpful. In this tutorial, we will use WordPress function wp_safe_redirect(). First, create a page. No need to add content. We will use this page’s slug. Suppose it’s “register”. Paste following code in your theme’s functions.php Now your registration URL will be yoursite.com/register instead of yoursite.com/wp-login.php?action=register == The End

How to Create Custom Registration URL in WordPress without Plugin Read More »

Redirect Successful Registraion

How to Redirect Successful Registration to Thank You Page in WordPress

By default WordPress redirects a successful registration to example.com/wp-login.php?checkemail=registered where it shows “Registration complete. Please check your email, then visit the login page”. But you can redirect them to your custom thank you page like example.com/thanks. There you can say them to check the spam folder for your email alongside thanking them. Create a page

How to Redirect Successful Registration to Thank You Page in WordPress Read More »