action_scheduler_reset_action
Использование
add_action( 'action_scheduler_reset_action', 'wp_kama_action_scheduler_reset_action' );
/**
* Function for `action_scheduler_reset_action` action-hook.
*
* @param $action_id
*
* @return void
*/
function wp_kama_action_scheduler_reset_action( $action_id ){
// action...
}
- $action_id
- -
Где вызывается хук
action_scheduler_reset_action
woocommerce/packages/action-scheduler/classes/ActionScheduler_QueueCleaner.php 193
do_action( 'action_scheduler_reset_action', $action_id );
Где используется хук в WooCommerce
woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler_Logger.php 73
add_action( 'action_scheduler_reset_action', array( $this, 'log_reset_action' ), 10, 1 );