update_termmeta_cache

函数
update_termmeta_cache ( $term_ids )
参数
  • (array) $term_ids List of term IDs.
    Required:
返回值
  • (array|false) An array of metadata on success, false if there is nothing to update.
定义位置
相关方法
update_sitemeta_cacheupdate_term_cacheupdate_meta_cacheupdate_postmeta_cacheupdate_comment_cache
引入
4.4.0
弃用
-

update_termmeta_cache: 这个函数更新分类法术语元数据的缓存。它通常在术语的元数据被更新后被调用,比如当一个插件设置被改变时。

更新术语ID列表的元数据缓存。

执行SQL查询,检索与`$term_ids`匹配的术语的所有元数据,并将它们存储在缓存中。以后调用`get_term_meta()`就不需要再查询数据库了。

function update_termmeta_cache( $term_ids ) {
	return update_meta_cache( 'term', $term_ids );
}

常见问题

FAQs
查看更多 >