HOWTO: Easily Change Registration Redirect in WordPress
Ever want to change the redirect for your WordPress site but were not sure how to do it? There is a quick and easy way to accomplish this. Simply put the following code in your theme’s functions.php file and change the URL after the “return”.
add_filter( 'registration_redirect' , 'sdac_registration_redirect' ); function sdac_registration_redirect() { return 'http://my-redirect-url.com'; }