delete_site_transient_(transient) хук-событие . WP 3.0.0
Fires immediately before a specific site transient is deleted.
The dynamic portion of the hook name, $transient, refers to the transient name.
Использование
add_action( 'delete_site_transient_(transient)', 'action_function_name_2947' ); function action_function_name_2947( $transient ){ // action... }
- $transient(строка)
- Transient name.
Список изменений
С версии 3.0.0 | Введена. |
Где вызывается хук
delete_site_transient_(transient)
wp-includes/option.php 1801
do_action( "delete_site_transient_{$transient}", $transient );