parse_request action-hook . WP 2.1.0
Fires once all query variables for the current request have been parsed.
Usage
add_action( 'parse_request', 'action_function_name_6544' ); function action_function_name_6544( $this ){ // action... }
- $this(WP)
- Current WordPress environment instance (passed by reference).
Changelog
Since 2.1.0 | Introduced. |
Where the hook is called
wp-includes/class-wp.php 388
do_action_ref_array( 'parse_request', array( &$this ) );
Where in WP core the hook is used WordPress
wp-includes/class-wp.php 467
add_action( 'parse_request', 'rest_api_loaded' );