Changeset 34812 for trunk/src/wp-includes/taxonomy-functions.php
- Timestamp:
- 10/03/2015 09:18:55 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/taxonomy-functions.php
r34811 r34812 4391 4391 4392 4392 $object_terms = get_object_term_cache( $object_id, $taxonomy ); 4393 if ( false === $object_terms ) 4394 $object_terms = wp_get_object_terms( $object_id, $taxonomy, array( 'update_term_meta_cache' => false ) ); 4393 if ( false === $object_terms ) { 4394 $object_terms = wp_get_object_terms( $object_id, $taxonomy, array( 'update_term_meta_cache' => false ) ); 4395 wp_cache_set( $object_id, $object_terms, "{$taxonomy}_relationships" ); 4396 } 4395 4397 4396 4398 if ( is_wp_error( $object_terms ) )
Note: See TracChangeset
for help on using the changeset viewer.