Viewing 2 replies - 1 through 2 (of 2 total)
  • You can use the filter registration_redirect to pass your own URL:

    function wp_registration_redirect() {
        return home_url( '/my-page' );
    }
    
    add_filter( 'registration_redirect', 'wp_registration_redirect' );

    Drop it into functions.php or a plugin.

    Thread Starter celsocos

    (@celsocos)

    Ok, thank you. I will try this. Regards,
    Celso

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘login/logout/register redirect’ is closed to new replies.