_prime_site_caches

函数
_prime_site_caches ( $ids, $update_meta_cache = true )
参数
  • (array) $ids ID list.
    Required:
  • (bool) $update_meta_cache Optional. Whether to update the meta cache. Default true.
    Required:
    Default: true
相关
  • update_site_cache()
定义位置
相关方法
_prime_term_caches_prime_post_caches_prime_comment_caches_prime_network_cachesupdate_site_cache
引入
4.6.0
弃用
-

_prime_site_caches: 该函数用于为给定的网站列表填充缓存。它执行数据库查询以检索网站列表,然后对结果进行缓存以提高性能。

从给定的ID中添加任何不存在于缓存中的网站到缓存中。

function _prime_site_caches( $ids, $update_meta_cache = true ) {
	global $wpdb;

	$non_cached_ids = _get_non_cached_ids( $ids, 'sites' );
	if ( ! empty( $non_cached_ids ) ) {
		$fresh_sites = $wpdb->get_results( sprintf( "SELECT * FROM $wpdb->blogs WHERE blog_id IN (%s)", implode( ',', array_map( 'intval', $non_cached_ids ) ) ) ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared

		update_site_cache( $fresh_sites, $update_meta_cache );
	}
}

常见问题

FAQs
查看更多 >