Make WordPress Core

Ticket #39194: 39194.diff

File 39194.diff, 1.1 KB (added by dlh, 8 years ago)
  • src/wp-includes/class-wp-customize-manager.php

     
    798798                        'no_found_rows' => true,
    799799                        'cache_results' => true,
    800800                        'update_post_meta_cache' => false,
    801                         'update_term_meta_cache' => false,
     801                        'update_post_term_cache' => false,
     802                        'lazy_load_term_meta' => false,
    802803                ) );
    803804                if ( ! empty( $changeset_post_query->posts ) ) {
    804805                        // Note: 'fields'=>'ids' is not being used in order to cache the post object as it will be needed.
  • src/wp-includes/theme.php

     
    16431643                'no_found_rows'          => true,
    16441644                'cache_results'          => true,
    16451645                'update_post_meta_cache' => false,
    1646                 'update_term_meta_cache' => false,
     1646                'update_post_term_cache' => false,
     1647                'lazy_load_term_meta'    => false,
    16471648        );
    16481649
    16491650        $post = null;