WP_Network_Query::parse_query
Parses arguments passed to the network query with default query parameters.
Method of the class: WP_Network_Query{}
Hooks from the method
Returns
null. Nothing (null).
Usage
$WP_Network_Query = new WP_Network_Query(); $WP_Network_Query->parse_query( $query );
- $query(string|array)
- WP_Network_Query arguments. See WP_Network_Query::__construct() for accepted arguments.
Default:''
Changelog
| Since 4.6.0 | Introduced. |
WP_Network_Query::parse_query() WP Network Query::parse query code WP 7.0
public function parse_query( $query = '' ) {
if ( empty( $query ) ) {
$query = $this->query_vars;
}
$this->query_vars = wp_parse_args( $query, $this->query_var_defaults );
/**
* Fires after the network query vars have been parsed.
*
* @since 4.6.0
*
* @param WP_Network_Query $query The WP_Network_Query instance (passed by reference).
*/
do_action_ref_array( 'parse_network_query', array( &$this ) );
}