mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-04-01 11:14:36 +00:00
Bootstrap/Load: Stop unnecessary queries when using the do_parse_request filter.
Developers of plugins and themes can use the `do_parse_request` filter to hot-wire requests and hook in early to render custom pages. However, even through these request may not need post queries and 404 lookups to be run, they run anyway. This can results in unnecessary SQL queries running on these requests. By adding a return value to the `parse_request` method of the `WP` class, these queries can now be skipped. Props junsuijin, ryan, westi, sivel, dd32, wonderboymusic, arnee, tyxla, DrewAPicture, lukecavanagh, SergeyBiryukov, davidbaumwald, Spacedmonkey, pbearne. Fixes #10886. git-svn-id: https://develop.svn.wordpress.org/trunk@52814 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -129,6 +129,7 @@ class WP {
|
||||
* @global WP_Rewrite $wp_rewrite WordPress rewrite component.
|
||||
*
|
||||
* @param array|string $extra_query_vars Set the extra query variables.
|
||||
* @return bool Whether the request was parsed.
|
||||
*/
|
||||
public function parse_request( $extra_query_vars = '' ) {
|
||||
global $wp_rewrite;
|
||||
@@ -143,7 +144,7 @@ class WP {
|
||||
* @param array|string $extra_query_vars Extra passed query variables.
|
||||
*/
|
||||
if ( ! apply_filters( 'do_parse_request', true, $this, $extra_query_vars ) ) {
|
||||
return;
|
||||
return false;
|
||||
}
|
||||
|
||||
$this->query_vars = array();
|
||||
@@ -394,6 +395,8 @@ class WP {
|
||||
* @param WP $wp Current WordPress environment instance (passed by reference).
|
||||
*/
|
||||
do_action_ref_array( 'parse_request', array( &$this ) );
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -755,12 +758,13 @@ class WP {
|
||||
*/
|
||||
public function main( $query_args = '' ) {
|
||||
$this->init();
|
||||
$this->parse_request( $query_args );
|
||||
$parsed = $this->parse_request( $query_args );
|
||||
$this->send_headers();
|
||||
$this->query_posts();
|
||||
$this->handle_404();
|
||||
$this->register_globals();
|
||||
|
||||
if ( $parsed ) {
|
||||
$this->query_posts();
|
||||
$this->handle_404();
|
||||
$this->register_globals();
|
||||
}
|
||||
/**
|
||||
* Fires once the WordPress environment has been set up.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user