wpseek.com
A WordPress-centric search engine for devs and theme authors
_get_non_cached_ids › WordPress Function
Since3.4.0
Deprecatedn/a
› _get_non_cached_ids ( $object_ids, $cache_group )
Parameters: (2) |
|
Returns: |
|
Defined at: |
|
Codex: | |
Change Log: |
|
Retrieves IDs that are not already present in the cache.
Related Functions: wp_get_nocache_headers, get_nonauthor_user_ids, get_cat_id, get_all_category_ids, get_the_id
Source
function _get_non_cached_ids( $object_ids, $cache_group ) { $object_ids = array_filter( $object_ids, '_validate_cache_id' ); $object_ids = array_unique( array_map( 'intval', $object_ids ), SORT_NUMERIC ); if ( empty( $object_ids ) ) { return array(); } $non_cached_ids = array(); $cache_values = wp_cache_get_multiple( $object_ids, $cache_group ); foreach ( $cache_values as $id => $value ) { if ( false === $value ) { $non_cached_ids[] = (int) $id; } } return $non_cached_ids; }