Ticket #16692: wp_parse_request_hook-v3.diff
File wp_parse_request_hook-v3.diff, 499 bytes (added by , 14 years ago) |
---|
-
wp-includes/class-wp.php
496 496 */ 497 497 function main($query_args = '') { 498 498 $this->init(); 499 $this->parse_request($query_args); 499 if ( !apply_filters( 'wp_parse_request', false, $this, $query_args ) ) 500 $this->parse_request( $query_args ); 500 501 $this->send_headers(); 501 502 $this->query_posts(); 502 503 $this->handle_404();