wp_clean_theme_json_cache

The timeline below displays how wordpress function wp_clean_theme_json_cache has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 6.4

/**
 * Cleans the caches under the theme_json group.
 *
 * @since 6.2.0
 */
function wp_clean_theme_json_cache()
{
    wp_cache_delete('wp_get_global_stylesheet', 'theme_json');
    wp_cache_delete('wp_get_global_styles_svg_filters', 'theme_json');
    wp_cache_delete('wp_get_global_settings_custom', 'theme_json');
    wp_cache_delete('wp_get_global_settings_theme', 'theme_json');
    wp_cache_delete('wp_get_global_styles_custom_css', 'theme_json');
    wp_cache_delete('wp_get_theme_data_template_parts', 'theme_json');
    WP_Theme_JSON_Resolver::clean_cached_data();
}

WordPress Version: 6.2

/**
 * Cleans the caches under the theme_json group.
 *
 * @since 6.2.0
 */
function wp_clean_theme_json_cache()
{
    wp_cache_delete('wp_get_global_stylesheet', 'theme_json');
    wp_cache_delete('wp_get_global_styles_svg_filters', 'theme_json');
    wp_cache_delete('wp_get_global_settings_custom', 'theme_json');
    wp_cache_delete('wp_get_global_settings_theme', 'theme_json');
    wp_cache_delete('wp_get_global_styles_custom_css', 'theme_json');
    WP_Theme_JSON_Resolver::clean_cached_data();
}