diff --git a/wp-includes/taxonomy-functions.php b/wp-includes/taxonomy-functions.php index 0692f6b833..8de369c2db 100644 --- a/wp-includes/taxonomy-functions.php +++ b/wp-includes/taxonomy-functions.php @@ -4391,7 +4391,7 @@ function is_object_in_term( $object_id, $taxonomy, $terms = null ) { $object_terms = get_object_term_cache( $object_id, $taxonomy ); if ( false === $object_terms ) - $object_terms = wp_get_object_terms( $object_id, $taxonomy ); + $object_terms = wp_get_object_terms( $object_id, $taxonomy, array( 'update_term_meta_cache' => false ) ); if ( is_wp_error( $object_terms ) ) return $object_terms; diff --git a/wp-includes/version.php b/wp-includes/version.php index 41cef6cbfa..290fb1015d 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34810'; +$wp_version = '4.4-alpha-34811'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.