From 9f381dbea636311604fb9e8d68196847b262b59c Mon Sep 17 00:00:00 2001 From: Dion Hulse Date: Thu, 5 Jan 2017 08:12:42 +0000 Subject: [PATCH] Customizer: Don't query for postmeta for Custom CSS (for not-current-themes) and Customizer Changeset posts. Props dlh. Fixes #39194. Built from https://develop.svn.wordpress.org/trunk@39692 git-svn-id: http://core.svn.wordpress.org/trunk@39632 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-customize-manager.php | 3 ++- wp-includes/theme.php | 3 ++- wp-includes/version.php | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/wp-includes/class-wp-customize-manager.php b/wp-includes/class-wp-customize-manager.php index 4ac25232ff..f80708a23f 100644 --- a/wp-includes/class-wp-customize-manager.php +++ b/wp-includes/class-wp-customize-manager.php @@ -798,7 +798,8 @@ final class WP_Customize_Manager { 'no_found_rows' => true, 'cache_results' => true, 'update_post_meta_cache' => false, - 'update_term_meta_cache' => false, + 'update_post_term_cache' => false, + 'lazy_load_term_meta' => false, ) ); if ( ! empty( $changeset_post_query->posts ) ) { // Note: 'fields'=>'ids' is not being used in order to cache the post object as it will be needed. diff --git a/wp-includes/theme.php b/wp-includes/theme.php index 24fa1116cf..dd8d7e6e7e 100644 --- a/wp-includes/theme.php +++ b/wp-includes/theme.php @@ -1644,7 +1644,8 @@ function wp_get_custom_css_post( $stylesheet = '' ) { 'no_found_rows' => true, 'cache_results' => true, 'update_post_meta_cache' => false, - 'update_term_meta_cache' => false, + 'update_post_term_cache' => false, + 'lazy_load_term_meta' => false, ); $post = null; diff --git a/wp-includes/version.php b/wp-includes/version.php index cc8c8c2d6b..940153f498 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.8-alpha-39691'; +$wp_version = '4.8-alpha-39692'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.