WP HOOKS
akcjadynamicznyod 3.0.0

set_transient_{$transient}

Args 3Plik wp-includes/option.php

Opis — z kodu źródłowego

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

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

Parametry

ParametrTypOpis
$valuemixedTransient value.
$expirationintTime until expiration in seconds.
$transientstringThe name of the transient.

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_action( 'set_transient_{$transient}', 'twoja_funkcja', 10, 3 );

function twoja_funkcja($param_1, $param_2, $param_3) {
	// Twój kod
}

Popularne w tej kategorii