HTTP/2 301
server: nginx
date: Wed, 30 Jul 2025 22:16:55 GMT
content-type: text/html; charset=UTF-8
x-olaf: ⛄
x-redirect-by: WordPress
location: https://developer.wordpress.org/reference/classes/WP_Object_Cache/add_global_groups/
x-frame-options: SAMEORIGIN
alt-svc: h3=":443"; ma=86400
x-nc: MISS ord 1
HTTP/2 200
server: nginx
date: Wed, 30 Jul 2025 22:16:55 GMT
content-type: text/html; charset=UTF-8
vary: Accept-Encoding
x-olaf: ⛄
link:
; rel="https://api.w.org/"
link:
; rel="alternate"; title="JSON"; type="application/json"
link: ; rel=shortlink
x-frame-options: SAMEORIGIN
content-encoding: gzip
alt-svc: h3=":443"; ma=86400
x-nc: MISS ord 1
WP_Object_Cache::add_global_groups() – Method | Developer.WordPress.org
WordPress Developer Resources
WP_Object_Cache::add_global_groups()
WP_Object_Cache::add_global_groups( string|string[] $groups )
Sets the list of global cache groups.
$groups
string|string[]requiredList of groups that are global.
public function add_global_groups( $groups ) {
$groups = (array) $groups;
$groups = array_fill_keys( $groups, true );
$this->global_groups = array_merge( $this->global_groups, $groups );
}
View all references View on Trac View on GitHub
Version | Description |
---|
3.0.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.