How to customize reset_url or $reset_url

I’m trying to change the confirmation link with key and username sent by wordpress when a user forget his password. The link looks like:

/wp-login.php?action=rp&key=VZUyDIiJxJz&login=user_name

And I want to change it this way:

/new-password/?action=rp&key=VZUyDIiJxJz&login=user_name

But I don’t know what filter I must use to change it.

Thank you in advance for your help and time.

Found a solution, putting this code in my theme functions.php. Maybe there’s a best solution out there… I think change all the message is not a good way:

function reset_password_message( $message, $key ) {

if ( strpos($_POST['user_login'], '@') ) {
    $user_data = get_user_by('email', trim($_POST['user_login']));
} else {
    $login = trim($_POST['user_login']);
    $user_data = get_user_by('login', $login);
}

$user_login = $user_data->user_login;

$msg = __('The password for the following account has been requested to be reset:'). "\r\n\r\n";
$msg .= network_site_url() . "\r\n\r\n";
$msg .= sprintf(__('Username: %s'), $user_login) . "\r\n\r\n";
$msg .= __('If this message was sent in error, please ignore this email.') . "\r\n\r\n";
$msg .= __('To reset your password, visit the following address:');
$msg .= '<' . network_site_url("new-password/?action=rp&key=$key&login=" . rawurlencode($user_login), 'login') . ">\r\n";

return $msg;

}

add_filter('retrieve_password_message', reset_password_message, null, 2);

0

Leave a Comment