wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



update_term_cache › WordPress Function

Desde2.3.0
Obsoleton/a
update_term_cache ( $terms, $taxonomy = '' )
Parâmetros: (2)
  • (WP_Term[]) $terms Array of term objects to change.
    Required: Yes
  • (string) $taxonomy Not used.
    Required: No
    Padrão: (empty)
Definido em:
Codex:

Updates terms in cache.



Fonte

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