wc_update_profile_last_update_time( int $user_id, array $old )
Hooks into the profile_update hook to set the user last updated timestamp.
Description Description
Parameters Parameters
- $user_id
-
(Required) The user that was updated.
- $old
-
(Required) The profile fields pre-change.
Source Source
File: includes/wc-user-functions.php
function wc_update_profile_last_update_time( $user_id, $old ) {
wc_set_user_last_update_time( $user_id );
}
Changelog Changelog
| Version | Description |
|---|---|
| 2.6.0 | Introduced. |