do_action( ‘wp_cache_set_last_changed’, string $group, int $time, int|false $previous_time )

In this article

Fires after a cache group last_changed time is updated.

Description

This may occur multiple times per page load and registered actions must be performant.

Parameters

$groupstring
The cache group name.
$timeint
The new last changed time.
$previous_timeint|false
The previous last changed time. False if not previously set.

Source

do_action( 'wp_cache_set_last_changed', $group, $time, $previous_time );

Changelog

VersionDescription
6.3.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.