wp_cache_add_global_groups( string|array $groups )

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


Description Description

See also See also


Top ↑

Parameters Parameters

$groups

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


Top ↑

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 );
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.6.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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