WP HOOKS
filtrdynamicznyod 2.9.0

site_transient_{$transient}

Args 2Plik wp-includes/option.php

Opis — z kodu źródłowego

Filters the value of an existing site transient.

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

Parametry

ParametrTypOpis
$valuemixedValue of site transient.
$transientstringTransient name.

Wywołanie

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

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

Popularne w tej kategorii