WP_Network_Query::query( string|array $query )

Sets up the ClassicPress query for retrieving networks.


Parameters

$query

(string|array) (Required) Array or URL query string of parameters.


Return

(array|int) List of WP_Network objects, a list of network ids when 'fields' is set to 'ids', or the number of networks when 'count' is passed as a query var.


Source

File: wp-includes/class-wp-network-query.php

	public function query( $query ) {
		$this->query_vars = wp_parse_args( $query );
		return $this->get_networks();
	}


Changelog

Changelog
Version Description
WP-4.6.0 Introduced.