apply_filters_ref_array( 'networks_pre_query', array|null $network_data , WP_Network_Query $this )
Filter the network data before the query takes place.
Description Description
Return a non-null value to bypass WordPress’s default network queries.
The expected return type from this filter depends on the value passed in the request query_vars. When $this->query_vars['count']
is set, the filter should return the network count as an int. When 'ids' === $this->query_vars['fields']
, the filter should return an array of network ids. Otherwise the filter should return an array of WP_Network objects.
Parameters Parameters
- $network_data
-
(array|null) Return an array of network data to short-circuit WP's network query, the network count as an integer if
$this->query_vars['count']
is set, or null to allow WP to run its normal queries. - $this
-
(WP_Network_Query) The WP_Network_Query instance, passed by reference.
Source Source
Changelog Changelog
Version | Description |
---|---|
5.2.0 | Introduced. |