Home » Wordpress » How to Redirect User to a custom page after registration

Below is code to redirect User to a custom page after registration

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

Thanks TheDeadMedic for the tip!

Array ( [0] => Wordpress, wordpress hacks, Wordpress Tip and Tricks )