W3cubDocs

/WordPress

WP_Theme::cache_add( string $key, array|string $data ): bool

Adds theme data to cache.

Description

Cache entries keyed by the theme and the type of data.

Parameters

$keystringrequired
Type of data to store (theme, screenshot, headers, post_templates)
$dataarray|stringrequired
Data to store

Return

bool Return value from wp_cache_add()

Source

private function cache_add( $key, $data ) {
	return wp_cache_add( $key . '-' . $this->cache_hash, $data, 'themes', self::$cache_expiration );
}

Changelog

Version Description
3.4.0 Introduced.

© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_theme/cache_add