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
257
258           /**
259            * Filters the network query results.
260            *
261            * @since 4.6.0
262            *
263            * @param array            $_networks An array of WP_Network objects.
264            * @param WP_Network_Query $this      Current instance of WP_Network_Query (passed by reference).
265            */
266           $_networks = apply_filters_ref_array( 'the_networks', array( $_networks, &$this ) );
267
268           // Convert to WP_Network instances
269           $this->networks = array_map( 'get_network', $_networks );
270
271           return $this->networks;
272      }
273
274      /**
275       * Used internally to get a list of network IDs matching the query vars.