WP_Customize_Manager::get_lock_user_data()protectedWP 4.9.0

Gets lock user data.

Method of the class: WP_Customize_Manager{}

No Hooks.

Return

Array|null. User data formatted for client.

Usage

// protected - for code of main (parent) or child class
$result = $this->get_lock_user_data( $user_id );
$user_id(int) (required)
User ID.

Changelog

Since 4.9.0 Introduced.

WP_Customize_Manager::get_lock_user_data() code WP 6.5.2

protected function get_lock_user_data( $user_id ) {
	if ( ! $user_id ) {
		return null;
	}

	$lock_user = get_userdata( $user_id );

	if ( ! $lock_user ) {
		return null;
	}

	return array(
		'id'     => $lock_user->ID,
		'name'   => $lock_user->display_name,
		'avatar' => get_avatar_url( $lock_user->ID, array( 'size' => 128 ) ),
	);
}