setted_transient
Устарел с версии 6.8.0. Больше не поддерживается и может быть удален. Смотрите set_transient.
Fires after the transient is set.
Использование
add_action( 'setted_transient', 'wp_kama_setted_transient_action', 10, 3 ); /** * Function for `setted_transient` action-hook. * * @param string $transient The name of the transient. * @param mixed $value Transient value. * @param int $expiration Time until expiration in seconds. * * @return void */ function wp_kama_setted_transient_action( $transient, $value, $expiration ){ // action... }
- $transient(строка)
- The name of the transient.
- $value(разное)
- Transient value.
- $expiration(int)
- Time until expiration in seconds.
Список изменений
С версии 3.0.0 | Введена. |
С версии 3.6.0 | The $value and $expiration parameters were added. |
Устарела с 6.8.0 | Use {@see 'set_transient'} instead. |
Где вызывается хук
setted_transient
wp-includes/option.php 1618
do_action_deprecated( 'setted_transient', array( $transient, $value, $expiration ), '6.8.0', 'set_transient' );