wp_cache_add_non_persistent_groups() WP 1.0
Adds a group or set of groups to the list of non-persistent groups.
No Hooks.
Return
Null. Nothing.
Usage
wp_cache_add_non_persistent_groups( $groups );
- $groups(string|array) (required)
- A group or an array of groups to add.
Changelog
Since 2.6.0 | Introduced. |
Code of wp_cache_add_non_persistent_groups() wp cache add non persistent groups WP 5.6.2
function wp_cache_add_non_persistent_groups( $groups ) {
// Default cache doesn't persist so nothing to do here.
}