WP_User::to_array()publicWP 3.5.0

Returns an array representation.

Method of the class: WP_User{}

No Hooks.

Return

Array. Array representation.

Usage

$WP_User = new WP_User();
$WP_User->to_array();

Changelog

Since 3.5.0 Introduced.

WP_User::to_array() code WP 6.5.2

public function to_array() {
	return get_object_vars( $this->data );
}