WP_Site_Query::query( string|array $query )
Sets up the WordPress query for retrieving sites.
Description Description
Parameters Parameters
- $query
-
(string|array) (Required) Array or URL query string of parameters.
Return Return
(array|int) List of WP_Site objects, a list of site ids when 'fields' is set to 'ids', or the number of sites when 'count' is passed as a query var.
Source Source
File: wp-includes/class-wp-site-query.php
public function query( $query ) { $this->query_vars = wp_parse_args( $query ); return $this->get_sites(); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
4.6.0 | Introduced. |