expiration_of_site_transient_{$transient} WordPress Filter Hook

This hook is called when a site transient is about to expire. It is called once per transient, with the name of the transient as its only parameter.

apply_filters( "expiration_of_site_transient_{$transient}", int $expiration, mixed $value, string $transient ) #

Filters the expiration for a site transient before its value is set.


Description

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


Top ↑

Parameters

$expiration

(int)Time until expiration in seconds. Use 0 for no expiration.

$value

(mixed)New value of site transient.

$transient

(string)Transient name.


Top ↑

Source

File: wp-includes/option.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
4.4.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