pre_set_transient_(transient) хук-фильтрWP 3.0.0

Filters a specific transient before its value is set.

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

Использование

add_filter( 'pre_set_transient_(transient)', 'wp_kama_pre_set_transient_filter', 10, 3 );

/**
 * Function for `pre_set_transient_(transient)` filter-hook.
 * 
 * @param mixed  $value      New value of transient.
 * @param int    $expiration Time until expiration in seconds.
 * @param string $transient  Transient name.
 *
 * @return mixed
 */
function wp_kama_pre_set_transient_filter( $value, $expiration, $transient ){

	// filter...
	return $value;
}
$value(разное)
New value of transient.
$expiration(int)
Time until expiration in seconds.
$transient(строка)
Transient name.

Список изменений

С версии 3.0.0 Введена.
С версии 4.2.0 The $expiration parameter was added.
С версии 4.4.0 The $transient parameter was added.

Где вызывается хук

set_transient()
pre_set_transient_(transient)
wp-includes/option.php 1281
$value = apply_filters( "pre_set_transient_{$transient}", $value, $expiration, $transient );

Где используется хук в WordPress

Использование не найдено.