Add parse_request, send_headers, and wp actions.

git-svn-id: https://develop.svn.wordpress.org/trunk@3789 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2006-05-22 19:23:46 +00:00
parent 60eeedbcd9
commit a08173016f
1 changed files with 5 additions and 0 deletions

View File

@ -224,6 +224,8 @@ class WP {
if ( isset($error) )
$this->query_vars['error'] = $error;
do_action('parse_request', array(&$this));
}
function send_headers() {
@ -263,6 +265,8 @@ class WP {
exit;
}
}
do_action('send_headers', array(&$this));
}
function build_query_string() {
@ -333,6 +337,7 @@ class WP {
$this->query_posts();
$this->handle_404();
$this->register_globals();
do_action('wp', array(&$this));
}
function WP() {