Redirect New Registered Users to a Specific Page
July 5, 2021
If you require a new user to register on your WordPress site, they might need some help with getting started. You can provide them that by sending them to a specific page after registering successfully. Maybe you want to send the most important information or their download instructions for easy access.
function wps_registration_redirect(){
return home_url( '/finished/' );
}
add_filter( 'registration_redirect', 'wps_registration_redirect' );
Posted in Tutorials