Changeset 48055 for trunk/src/wp-includes/taxonomy.php
- Timestamp:
- 06/16/2020 06:28:57 AM (6 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/taxonomy.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/taxonomy.php
r47930 r48055 3411 3411 3412 3412 $ids = array(); 3413 foreach ( (array) $object_ids as $id ) { 3414 foreach ( $taxonomies as $taxonomy ) { 3415 if ( false === wp_cache_get( $id, "{$taxonomy}_relationships" ) ) { 3416 $ids[] = $id; 3413 foreach ( $taxonomies as $taxonomy ) { 3414 $cache_values = wp_cache_get_multiple( (array) $object_ids, "{$taxonomy}_relationships" ); 3415 foreach ( $cache_values as $key => $value ) { 3416 if ( false === $value ) { 3417 $ids[] = $key; 3417 3418 break; 3418 3419 }
Note: See TracChangeset
for help on using the changeset viewer.