wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



refresh_user_details › WordPress Function

Seit3.0.0
Veraltetn/v
refresh_user_details ( $id )
Parameter:
  • (int) $id The user ID.
    Erforderlich: Ja
Gibt zurück:
  • (int|false) The ID of the refreshed user or false if the user does not exist.
Definiert in:
Codex:

Cleans the user cache for a specific user.



Quellcode

function refresh_user_details( $id ) {
	$id = (int) $id;

	$user = get_userdata( $id );
	if ( ! $user ) {
		return false;
	}

	clean_user_cache( $user );

	return $id;
}