
如何修复MAMP本地环境phpMyAdmin不工作错误
_prime_site_caches ( $ids, $update_meta_cache = true )
_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 ); } }