Changeset 48055 for trunk/src/wp-includes/functions.php
- Timestamp:
- 06/16/2020 06:28:57 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r48054 r48055 6360 6360 */ 6361 6361 function _get_non_cached_ids( $object_ids, $cache_key ) { 6362 $clean = array(); 6363 foreach ( $object_ids as $id ) { 6362 $clean = array(); 6363 $cache_values = wp_cache_get_multiple( $object_ids, $cache_key ); 6364 foreach ( $cache_values as $id => $cache_value ) { 6364 6365 $id = (int) $id; 6365 if ( ! wp_cache_get( $id, $cache_key )) {6366 if ( ! $cache_value ) { 6366 6367 $clean[] = $id; 6367 6368 }
Note: See TracChangeset
for help on using the changeset viewer.