parse_network_query action-hook . WP 4.6.0
Fires after the network query vars have been parsed.
Usage
add_action( 'parse_network_query', 'action_function_name_2263' ); function action_function_name_2263( $this ){ // action... }
- $this(WP_Network_Query)
- The WP_Network_Query instance (passed by reference).
Changelog
Since 4.6.0 | Introduced. |
Where the hook is called
parse_network_query
wp-includes/class-wp-network-query.php 163
do_action_ref_array( 'parse_network_query', array( &$this ) );