W3cubDocs

/WordPress

wp_cache_get_multiple( array $keys, string $group = '', bool $force = false )

Retrieves multiple values from the cache in one call.

Description

See also

Parameters

$keys

(array) (Required) Array of keys under which the cache contents are stored.

$group

(string) (Optional) Where the cache contents are grouped.

Default value: ''

$force

(bool) (Optional) Whether to force an update of the local cache from the persistent cache.

Default value: false

Return

(array) Array of values organized into groups.

Source

File: wp-includes/cache.php

function wp_cache_get_multiple( $keys, $group = '', $force = false ) {
	global $wp_object_cache;

	return $wp_object_cache->get_multiple( $keys, $group, $force );
}

Changelog

Version Description
5.5.0 Introduced.

© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_cache_get_multiple