setted_site_transient action-hookWP 3.0.0

Deprecated since 6.8.0. It is no longer supported and may be removed in future releases. See set_site_transient.

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

Usage

add_action( 'setted_site_transient', 'wp_kama_setted_site_transient_action', 10, 3 );

/**
 * Function for `setted_site_transient` action-hook.
 * 
 * @param string $transient  The name of the site transient.
 * @param mixed  $value      Site transient value.
 * @param int    $expiration Time until expiration in seconds.
 *
 * @return void
 */
function wp_kama_setted_site_transient_action( $transient, $value, $expiration ){

	// action...
}
$transient(string)
The name of the site transient.
$value(mixed)
Site transient value.
$expiration(int)
Time until expiration in seconds.

Changelog

Since 3.0.0 Introduced.
Deprecated since 6.8.0 Use {@see 'set_site_transient'} instead.

Where the hook is called

set_site_transient()
setted_site_transient
wp-includes/option.php 2726
do_action_deprecated( 'setted_site_transient', array( $transient, $value, $expiration ), '6.8.0', 'set_site_transient' );

Where the hook is used in WordPress

Usage not found.