update_term_cache( WP_Term[] $terms, string $taxonomy = '' )

Updates Terms to Taxonomy in cache.

Parameters

$terms

(WP_Term[]) (Required) Array of term objects to change.

$taxonomy

(string) (Optional) Not used.

Default value: ''

Source

File: wp-includes/taxonomy.php

function update_term_cache( $terms, $taxonomy = '' ) {
	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 );

		wp_cache_add( $term->term_id, $_term, 'terms' );
	}
}

Changelog

Version Description
2.3.0 Introduced.

© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/update_term_cache