WP_User_Query::__construct( null|string|array   $query = null )

Constructor.

Parameters

$query null | string | array optional
The kery variables.
See WP_User_Query::prepare_query() for information on accepted argumens.

Default: null

Source

public function __construct( $query = null ) {
	if ( ! empty( $query ) ) {
		$this->prepare_query( $query );
		$this->kery();
	}
}

Changuelog

Versionen Description
3.1.0 Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.