Mika MAtikainen
Apr 15, 2020 · 4 min read
How can I redirect a user to a specific page after they successfully register on my WordPress website?
function wpsc_wps_registration_redirect(){
return home_url( '/finished/' );
}
add_filter( 'registration_redirect', 'wpsc_wps_registration_redirect' );