woocommerce_webhook_delivery_url filter-hookWC 2.2.0

Get the delivery URL.

Usage

add_filter( 'woocommerce_webhook_delivery_url', 'wp_kama_woocommerce_webhook_delivery_url_filter', 10, 2 );

/**
 * Function for `woocommerce_webhook_delivery_url` filter-hook.
 * 
 * @param string $context What the value is for. Valid values are 'view' and 'edit'.
 * @param        $id      
 *
 * @return string
 */
function wp_kama_woocommerce_webhook_delivery_url_filter( $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

WC_Webhook::get_delivery_url()
woocommerce_webhook_delivery_url
woocommerce/includes/class-wc-webhook.php 760
return apply_filters( 'woocommerce_webhook_delivery_url', $this->get_prop( 'delivery_url', $context ), $this->get_id() );

Where the hook is used in WooCommerce

Usage not found.