This is in wordpress. Can anyone show me how to add a redirect to http://www.mydomain.com/client-page/ after someone logs in using this script? I have this login script working on the home page of my site and I need them to be redirected to another page after they log in. Any help would be great ;o)


<?php if (!(current_user_can('level_0'))){ ?>
<h4>Login below</h4>
<form action="<?php echo get_option('home'); ?>/wp-login.php" method="post">
<input type="text" name="log" id="log" value="<?php echo wp_specialchars(stripslashes($user_login), 1) ?>" size="30" />
<br />
<input type="password" name="pwd" id="pwd" size="30" />
<br />
<input type="submit" name="submit" value="Send" class="button" />
<p>
<label for="rememberme"><input name="rememberme" id="rememberme" type="checkbox" checked="checked" value="forever" /> Remember me</label>
<input type="hidden" name="redirect_to" value="<?php echo $_SERVER['REQUEST_URI']; ?>" />
</p>
</form>
<a href="<?php echo get_option('home'); ?>/wp-login.php?action=lostpassword">Recover password</a>
<?php } else { ?>
<h4>Logout below</h4>
<a href="<?php echo wp_logout_url(urlencode($_SERVER['REQUEST_URI'])); ?>">logout</a><br />

<?php }?>