woocommerce_webhook_disabled_due_delivery_failures хук-событиеWC 1.0

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

add_action( 'woocommerce_webhook_disabled_due_delivery_failures', 'wp_kama_woocommerce_webhook_disabled_due_delivery_failures_action' );

/**
 * Function for `woocommerce_webhook_disabled_due_delivery_failures` action-hook.
 * 
 * @param  $id 
 *
 * @return void
 */
function wp_kama_woocommerce_webhook_disabled_due_delivery_failures_action( $id ){

	// action...
}
$id
-

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

WC_Webhook::failed_delivery()
woocommerce_webhook_disabled_due_delivery_failures
woocommerce/includes/class-wc-webhook.php 602
do_action( 'woocommerce_webhook_disabled_due_delivery_failures', $this->get_id() );

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

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