do_action( ‘wp_cache_set_last_changed’, string $group, string $time, string|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.
$timestring
The new last changed time (msec sec).
$previous_timestring|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.