Description
Fires after the value for a transient has been set.
Occurrences
Filename | Line Number |
---|---|
wp-includes/option.php | 1574 |
Parameters
Type | Name | Description |
---|---|---|
string | $transient | The name of the transient. |
mixed | $value | Transient value. |
int | $expiration | Time until expiration in seconds. |
PHP Doc
/**
* Fires after the value for a transient has been set.
*
* @since 3.0.0
* @since 3.6.0 The `$value` and `$expiration` parameters were added.
*
* @param string $transient The name of the transient.
* @param mixed $value Transient value.
* @param int $expiration Time until expiration in seconds.
*/