wp_cache_add_non_persistent_groups

Advertisement

Summery Summery

Adds a group or set of groups to the list of non-persistent groups.

Syntax Syntax

wp_cache_add_non_persistent_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_non_persistent_groups( $groups ) {
	// Default cache doesn't persist so nothing to do here.
}

Advertisement

Changelog Changelog

Changelog
Version Description
2.6.0 Introduced.

Advertisement

Leave a Reply