WP_CLI\Iterators

Query::rewindpublicWP-CLI 1.0ReturnTypeWillChange

Method of the class: Query{}

No Hooks.

Returns

null. Nothing (null).

Usage

$Query = new Query();
$Query->rewind();

Query::rewind() code WP-CLI 2.13.0-alpha

public function rewind() {
	$this->results          = [];
	$this->global_index     = 0;
	$this->index_in_results = 0;
	$this->offset           = 0;
	$this->depleted         = false;
}