wp_cache_set_multiple( array $data, string $group = , int $expire ): bool[]

Sets multiple values to the cache in one call.

Description

See also

Parameters

$dataarrayrequired
Array of keys and values to be set.
$groupstringoptional
Where the cache contents are grouped.

Default:''

$expireintoptional
When to expire the cache contents, in seconds.
Default 0 (no expiration).

Return

bool[] Array of return values, grouped by key. Each value is either true on success, or false on failure.

Source

function wp_cache_set_multiple( array $data, $group = '', $expire = 0 ) {
	global $wp_object_cache;

	return $wp_object_cache->set_multiple( $data, $group, $expire );
}

Changelog

VersionDescription
6.0.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.