woocommerce_webhook_delivery_url filter-hook . WC 2.2.0
Get the delivery URL.
Usage
add_filter( 'woocommerce_webhook_delivery_url', 'filter_function_name_6804', 10, 2 ); function filter_function_name_6804( $context, $id ){ // filter... return $context; }
- $context(string)
- What the value is for. Valid values are 'view' and 'edit'.
- $id
- -
Changelog
Since 2.2.0 | Introduced. |
Where the hook is called
woocommerce_webhook_delivery_url
woocommerce/includes/class-wc-webhook.php 755
return apply_filters( 'woocommerce_webhook_delivery_url', $this->get_prop( 'delivery_url', $context ), $this->get_id() );