wp_cache_add_global_groups

Advertisement

Summery Summery

Adds a group or set of groups to the list of global groups.

Syntax Syntax

wp_cache_add_global_groups( string|array $groups )

Parameters Parameters

$groups

(Required) A group or an array of groups to add.

Source Source

File: wp-includes/cache.php

function wp_cache_add_global_groups( $groups ) {
	global $wp_object_cache;

	$wp_object_cache->add_global_groups( $groups );
}

Advertisement

Changelog Changelog

Changelog
Version Description
2.6.0 Introduced.

See also See also

Advertisement

Leave a Reply