返回介绍

_prime_term_caches()

发布于 2017-09-11 13:34:52 字数 2126 浏览 1059 评论 0 收藏 0

Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

_prime_term_caches( array $term_ids,  bool $update_meta_cache = true )

Adds any terms from the given IDs to the cache that do not already exist in cache.


description


参数

$term_ids

(array) (Required) Array of term IDs.

$update_meta_cache

(bool) (Optional) Whether to update the meta cache.

Default value: true


源代码

File: wp-includes/taxonomy.php

function _prime_term_caches( $term_ids, $update_meta_cache = true ) {
	global $wpdb;

	$non_cached_ids = _get_non_cached_ids( $term_ids, 'terms' );
	if ( ! empty( $non_cached_ids ) ) {
		$fresh_terms = $wpdb->get_results( sprintf( "SELECT t.*, tt.* FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy AS tt ON t.term_id = tt.term_id WHERE t.term_id IN (%s)", join( ",", array_map( 'intval', $non_cached_ids ) ) ) );

		update_term_cache( $fresh_terms, $update_meta_cache );

		if ( $update_meta_cache ) {
			update_termmeta_cache( $non_cached_ids );
		}
	}
}

更新日志

Versiondescription
4.6.0Introduced.

相关函数

Uses

  • wp-includes/taxonomy.php: update_termmeta_cache()
  • wp-includes/functions.php: _get_non_cached_ids()
  • wp-includes/taxonomy.php: update_term_cache()
  • wp-includes/wp-db.php: wpdb::get_results()

Used By

  • wp-includes/taxonomy.php: get_object_term_cache()

User Contributed Notes

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文