refresh_user_details() WordPress Function
The refresh_user_details() function is used to update the user details for a given user. This function is typically used when the user details have been changed in the database.
refresh_user_details( int $id ) #
Cleans the user cache for a specific user.
Parameters
- $id
(int)(Required)The user ID.
Return
(int|false) The ID of the refreshed user or false if the user does not exist.
Source
File: wp-admin/includes/ms.php
function refresh_user_details( $id ) { $id = (int) $id; $user = get_userdata( $id ); if ( ! $user ) { return false; } clean_user_cache( $user ); return $id; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |