wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_cache_add_global_groups › WordPress Function

Seit2.6.0
Veraltetn/v
wp_cache_add_global_groups ( $groups )
Parameter:
  • (string|string[]) $groups A group or an array of groups to add.
    Erforderlich: Ja
Siehe:
  • WP_Object_Cache::add_global_groups()
Definiert in:
Codex:

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



Quellcode

function wp_cache_add_global_groups( $groups ) {
	global $wp_object_cache;

	$wp_object_cache->add_global_groups( $groups );
}