Want to redirect the user to a specific page after registration add this snippet to functions.php file to redirect a Successful Registration
This snippet will be useful if you allow people to register on your website. It lets you redirect a user to a specific page after a successful registration. You can add a custom thank you a message on the page.
Add the below snippets to functions.php file for Redirect a Successful Registration to Specific Page
function wps_registration_redirect(){ return home_url( '/finished/' ); } add_filter( 'registration_redirect', 'wps_registration_redirect' );