update_termmeta_cache

Advertisement

Summery Summery

Updates metadata cache for list of term IDs.

Syntax Syntax

update_termmeta_cache( array $term_ids )

Description Description

Performs SQL query to retrieve all metadata for the terms matching $term_ids and stores them in the cache. Subsequent calls to get_term_meta() will not need to query the database.

Parameters Parameters

$term_ids

(Required) List of term IDs.

Return Return

(array|false) Returns false if there is nothing to update. Returns an array of metadata on success.

Source Source

File: wp-includes/taxonomy.php

 *                        This parameter has no effect if $key is not specified.
 *                        Default false.
 * @return mixed An array if $single is false. The value of the meta field

Advertisement

Changelog Changelog

Changelog
Version Description
4.4.0 Introduced.

Advertisement

Leave a Reply