
How to Automatically Redirect Users After Password Reset
WordPress redirect after password reset
In this article, we will show you how to redirect the users after rest the password on wordress. It’s very simple and easy to get this done. Below is the code, need to add into the function.php
file on the theme file.
function wpb_after_password_reset_redirect() { wp_redirect( home_url().'/client-vault' ); exit; // always exit after wp_redirect } add_action('after_password_reset', 'wpb_after_password_reset_redirect');