wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
update_sitemeta_cache › WordPress Function
Seit5.1.0
Veraltetn/v
› update_sitemeta_cache ( $site_ids )
Parameter: |
|
Gibt zurück: |
|
Definiert in: |
|
Codex: |
Updates metadata cache for list of site IDs.
Performs SQL query to retrieve all metadata for the sites matching$site_ids
and stores them in the cache.
Subsequent calls to get_site_meta()
will not need to query the database.Ähnliche Funktionen: update_termmeta_cache, update_postmeta_cache, update_site_cache, update_meta_cache, update_term_cache
Quellcode
function update_sitemeta_cache( $site_ids ) { // Ensure this filter is hooked in even if the function is called early. if ( ! has_filter( 'update_blog_metadata_cache', 'wp_check_site_meta_support_prefilter' ) ) { add_filter( 'update_blog_metadata_cache', 'wp_check_site_meta_support_prefilter' ); } return update_meta_cache( 'blog', $site_ids ); }