woocommerce_webhook_disabled_due_delivery_failures action-hookWC 1.0

Usage

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
-

Where the hook is called

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() );

Where the hook is used in WooCommerce

Usage not found.