parse_term_query
Fires after term query vars have been parsed.
Description
Parameters (1)
- 0. $instance (WP_Term_Query)
- Current instance of
WP_Term_Query
.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'parse_term_query', $instance );
- The following example is for adding a hook callback.
- // define the parse_term_query callback
- function action_parse_term_query( $instance ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'parse_term_query', 'action_parse_term_query', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'parse_term_query', 'action_parse_term_query', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/class-wp-term-query.php
- do_action( 'parse_term_query', $this );