Below is code to redirect User to a custom page after registration
1 2 3 4 | function __my_registration_redirect(){ return home_url( '/my-page' ); } add_filter( 'registration_redirect' , '__my_registration_redirect' ); |
Thanks TheDeadMedic for the tip!