set_transient

set_transient

Hook Type: action

See hook in core

Displaying hooks found in version: wordpress-6.8.2

do_action('set_transient') is found 1 times:

  • /wp-includes/option.php line 1605
    		 * @param string $transient  The name of the transient.
    		 * @param mixed  $value      Transient value.
    		 * @param int    $expiration Time until expiration in seconds.
    		 */
    		do_action( 'set_transient', $transient, $value, $expiration );
    
    		/**
    		 * Fires after the transient is set.
    		 *
    		 * @since 3.0.0
    		 * @since 3.6.0 The `$value` and `$expiration` parameters were added.