Uses
Uses | Description |
---|---|
wp-includes/class-wp-network-query.php: WP_Network_Query::get_networks() | Gets a list of networks matching the query vars. |
wp-includes/functions.php: wp_parse_args() | Merge user defined arguments into defaults array. |
Sets up the WordPress query for retrieving networks.
(string|array) (Required) Array or URL query string of parameters.
(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.
File: wp-includes/class-wp-network-query.php
public function query( $query ) { $this->query_vars = wp_parse_args( $query ); return $this->get_networks(); }
Version | Description |
---|---|
4.6.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_network_query/query