まず、データベースからユーザーの詳細を取得します。次に、ユーザーのハッシュ化されたパスワードをプレーンテキストのパスワードで確認します。
ユーザーを取得するには、次のことを試してください。
$user = get_user_by( 'email', $email );
次に:
if ( $user && wp_check_password( $userPassword, $user->data->user_pass, $user->ID) ){
echo json_encode("Passwords match");
$returnValue = TRUE;
}
else{
echo json_encode("Passwords do not match");
$returnValue = FALSE;
}
関連資料: