How to redirect a sucessful registration to a page template?

Each time I register I end up in the wp-login page (back-end):

enter image description here

Is there any way of redirecting the users who register to a page template (front-end)?

4 s
4

You can use the filter registration_redirect to pass back your own URL, for example;

function wpse_19692_registration_redirect() {
    return home_url( '/my-page' );
}

add_filter( 'registration_redirect', 'wpse_19692_registration_redirect' );

Drop it in your functions.php or a plugin 🙂

Leave a Comment