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

Updates terms in cache.


Parameters

$terms WP_Term[] Required
Array of term objects to change.
$taxonomy string Optional
Not used.

Default: ''


Top ↑

Source

File: wp-includes/taxonomy.php. View all references

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' );
}


Top ↑

Changelog

Changelog
Version Description
2.3.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.