wp_cache_set_multiple()WP 6.0.0

Sets multiple values to the cache in one call.

Хуков нет.

Возвращает

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

Использование

wp_cache_set_multiple( $data, $group, $expire );
$data(массив) (обязательный)
Array of keys and values to be set.
$group(строка)
Where the cache contents are grouped.
По умолчанию: ''
$expire(int)
When to expire the cache contents, in seconds.
По умолчанию: 0 (no expiration)

Заметки

Список изменений

С версии 6.0.0 Введена.

Код wp_cache_set_multiple() WP 6.4.3

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

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