parse_tax_query action-hookWP 3.7.0

Fires after taxonomy-related query vars have been parsed.

Usage

add_action( 'parse_tax_query', 'wp_kama_parse_tax_query_action' );

/**
 * Function for `parse_tax_query` action-hook.
 * 
 * @param WP_Query $query The WP_Query instance.
 *
 * @return void
 */
function wp_kama_parse_tax_query_action( $query ){

	// action...
}
$query(WP_Query)
The WP_Query instance.

Changelog

Since 3.7.0 Introduced.

Where the hook is called

WP_Query::parse_tax_query()
parse_tax_query
wp-includes/class-wp-query.php 1381
do_action( 'parse_tax_query', $this );

Where the hook is used in WordPress

Usage not found.