Description
Fires after a cache group `last_changed` time is updated. This may occur multiple times per page load and registered actions must be performant.
Occurrences
Filename | Line Number |
---|---|
wp-includes/functions.php | 8014 |
Parameters
Type | Name | Description |
---|---|---|
string | $group | The cache group name. |
int | $time | The new last changed time. |
int|false | $previous_time | The previous last changed time. False if not previously set. |
PHP Doc
/**
* Fires after a cache group `last_changed` time is updated.
* This may occur multiple times per page load and registered
* actions must be performant.
*
* @since 6.3.0
*
* @param string $group The cache group name.
* @param int $time The new last changed time.
* @param int|false $previous_time The previous last changed time. False if not previously set.
*/