set_transient_{$transient} WordPress Action Hook

The set_transient_{$transient} hook is triggered when a transient is set. It allows you to take action when a transient is set, such as logging or notifying a user.

do_action( "set_transient_{$transient}", mixed $value, int $expiration, string $transient ) #

Fires after the value for a specific transient has been set.


Description

The dynamic portion of the hook name, $transient, refers to the transient name.


Top ↑

Parameters

$value

(mixed)Transient value.

$expiration

(int)Time until expiration in seconds.

$transient

(string)The name of the transient.


Top ↑

Source

File: wp-includes/option.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
4.4.0The $transient parameter was added.
3.6.0The $value and $expiration parameters were added.
3.0.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More