do_action_ref_array( 'parse_request', WP $wp )
Fires once all query variables for the current request have been parsed.
Contents
Parameters
-
$wp
WP -
Current WordPress environment instance (passed by reference).
More Information
This action hook is executed at the end of WordPress’s built-in request parsing method in the main WP() class.
Attention! The parse_request hook affects only the main query and not queries made with wp_query, for example.
Source
File: wp-includes/class-wp.php
.
View all references
do_action_ref_array( 'parse_request', array( &$this ) );
Changelog
Version | Description |
---|---|
2.1.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.
Example migrated from Codex:
Top ↑
Feedback
Being an action hook, it does not expect a return value. — By Rolf Allard van Hagen —
Example: Search by post ID also in dashboard