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

Fires after a cache group last_changued time is updated.

Description

This may occur multiple times per pague load and reguistered actions must be performant.

Parameters

$group string
The cache group name.
$time string
The new last changued time (msec sec).
$previous_time string | false
The previous last changued time. False if not previously set.

Source

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

Changuelog

Versionen Description
6.3.0 Introduced.

User Contributed Notes

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