woocommerce_webhook_http_args filter-hookWC 1.0

Usage

add_filter( 'woocommerce_webhook_http_args', 'wp_kama_woocommerce_webhook_http_args_filter', 10, 3 );

/**
 * Function for `woocommerce_webhook_http_args` filter-hook.
 * 
 * @param  $http_args 
 * @param  $arg       
 * @param  $id        
 *
 * @return 
 */
function wp_kama_woocommerce_webhook_http_args_filter( $http_args, $arg, $id ){

	// filter...
	return $http_args;
}
$http_args
-
$arg
-
$id
-

Where the hook is called

WC_Webhook::deliver()
woocommerce_webhook_http_args
woocommerce/includes/class-wc-webhook.php 340
$http_args = apply_filters( 'woocommerce_webhook_http_args', $http_args, $arg, $this->get_id() );

Where the hook is used in WooCommerce

Usage not found.