W3cubDocs

/WordPress

refresh_user_details( int $id )

Cleans the user cache for a specific user.

Parameters

$id

(int) (Required) The user ID.

Return

(bool|int) 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;
}

Changelog

Version Description
3.0.0 Introduced.

© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/refresh_user_details