woocommerce_webhook_process_delivery action-hook . WC 3.3.0
Process webhook delivery.
Usage
add_action( 'woocommerce_webhook_process_delivery', 'action_function_name_8940', 10, 2 ); function action_function_name_8940( $that, $arg ){ // action... }
- $that
- -
- $arg
- -
Changelog
Since 3.3.0 | Introduced. |
Where the hook is called
woocommerce_webhook_process_delivery
woocommerce/includes/class-wc-webhook.php 126
do_action( 'woocommerce_webhook_process_delivery', $this, $arg );
Where in WP core the hook is used WooCommerce
woocommerce/includes/wc-webhook-functions.php 65
add_action( 'woocommerce_webhook_process_delivery', 'wc_webhook_process_delivery', 10, 2 );