wpseek.com
A WordPress-centric search engine for devs and theme authors
update_term_cache › WordPress Function
Since2.3.0
Deprecatedn/a
› update_term_cache ( $terms, $taxonomy = '' )
| Parameters: (2) |
|
| Defined at: |
|
| Codex: |
Updates terms in cache.
Related Functions: update_termmeta_cache, update_site_cache, update_user_caches, update_category_cache, update_sitemeta_cache
Source
function update_term_cache( $terms, $taxonomy = '' ) {
$data = array();
foreach ( (array) $terms as $term ) {
// Create a copy in case the array was passed by reference.
$_term = clone $term;
// Object ID should not be cached.
unset( $_term->object_id );
$data[ $term->term_id ] = $_term;
}
wp_cache_add_multiple( $data, 'terms' );
}