fauzanjeg

Redirect to Home After Confirm New Password

Jan 11th, 2021 (edited)
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. /* Redirect after confirm new password */
  2. function redirect_after_create_password() {
  3.     wp_redirect( home_url() );
  4.     exit;
  5. }
  6. add_action( 'after_password_reset', 'redirect_after_create_password' );
Add Comment
Please, Sign In to add comment