Registration area + reserved area
Paste this into your functions.php file and edit according to comments. add_filter(‘login_redirect’, ‘redirect_user’, 10); function redirect_user(){ global $user; //where you want to redirect users too $redirect = home_url() . ‘/where-do-we-go-from-here/’; /* * each role listed in this array will be redirect to above URL * if you only have one user role to redirect then … Read more