WP_Theme_JSON_Resolver::clean_cached_data()
Cleans the cached data so it can be recalculated.
Source
File: wp-includes/class-wp-theme-json-resolver.php
.
View all references
public static function clean_cached_data() {
static::$core = null;
static::$blocks = null;
static::$blocks_cache = array(
'core' => array(),
'blocks' => array(),
'theme' => array(),
'user' => array(),
);
static::$theme = null;
static::$user = null;
static::$user_custom_post_type_id = null;
static::$i18n_schema = null;
}
Changelog
Version | Description |
---|---|
6.1.0 | Added the $blocks and $blocks_cache variables to reset. |
5.9.0 | Added the $user , $user_custom_post_type_id , and $i18n_schema variables to reset. |
5.8.0 | Introduced. |