wp_cache_add_global_groups( string|string[] $groups )

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


Description

Top ↑

See also


Top ↑

Parameters

$groups string|string[] Required
A group or an array of groups to add.

Top ↑

Source

File: wp-includes/cache.php. View all references

function wp_cache_add_global_groups( $groups ) {
	global $wp_object_cache;

	$wp_object_cache->add_global_groups( $groups );
}


Top ↑

Changelog

Changelog
Version Description
2.6.0 Introduced.

Top ↑

User Contributed Notes

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