woocommerce_max_webhook_delivery_failures хук-фильтрWC 1.0

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

add_filter( 'woocommerce_max_webhook_delivery_failures', 'wp_kama_woocommerce_max_webhook_delivery_failures_filter' );

/**
 * Function for `woocommerce_max_webhook_delivery_failures` filter-hook.
 * 
 * @param  $5 
 *
 * @return 
 */
function wp_kama_woocommerce_max_webhook_delivery_failures_filter( $5 ){

	// filter...
	return $5;
}
$5
-

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

WC_Webhook::failed_delivery()
woocommerce_max_webhook_delivery_failures
woocommerce/includes/class-wc-webhook.php 599
if ( $failures > apply_filters( 'woocommerce_max_webhook_delivery_failures', 5 ) ) {

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

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