Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: the_networks

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
261
262           /**
263            * Filters the network query results.
264            *
265            * @since 4.6.0
266            *
267            * @param array            $results  An array of networks.
268            * @param WP_Network_Query &$this    Current instance of WP_Network_Query, passed by reference.
269            */
270           $_networks = apply_filters_ref_array( 'the_networks', array( $_networks, &$this ) );
271
272           // Convert to WP_Network instances
273           $this->networks = array_map( 'get_network', $_networks );
274
275           return $this->networks;
276      }
277
278      /**
279       * Used internally to get a list of network IDs matching the query vars.