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
267
268           /**
269            * Filters the network query results.
270            *
271            * @since 4.6.0
272            *
273            * @param array            $results  An array of networks.
274            * @param WP_Network_Query &$this    Current instance of WP_Network_Query, passed by reference.
275            */
276           $_networks = apply_filters_ref_array( 'the_networks', array( $_networks, &$this ) );
277
278           // Convert to WP_Network instances
279           $this->networks = array_map( 'get_network', $_networks );
280
281           return $this->networks;
282      }
283
284      /**
285       * Used internally to get a list of network IDs matching the query vars.