wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
_prime_term_caches › WordPress Function
Seit4.6.0
Veraltetn/v
› _prime_term_caches ( $term_ids, $update_meta_cache = true )
| Parameter: (2) |
|
| Definiert in: |
|
| Codex: | |
| Changelog: |
|
Adds any terms from the given IDs to the cache that do not already exist in cache.
Ähnliche Funktionen: _prime_site_caches, _prime_post_caches, _prime_network_caches, _prime_comment_caches, wp_prime_option_caches
Quellcode
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)", implode( ',', array_map( 'intval', $non_cached_ids ) ) ) );
update_term_cache( $fresh_terms );
}
if ( $update_meta_cache ) {
wp_lazyload_term_meta( $term_ids );
}
}