woocommerce_api_edit_webhook_data filter-hook . WC 1.0
Usage
add_filter( 'woocommerce_api_edit_webhook_data', 'filter_function_name_5874', 10, 3 ); function filter_function_name_5874( $data, $id, $that ){ // filter... return $data; }
- $data
- -
- $id
- -
- $that
- -
Where the hook is called
woocommerce_api_edit_webhook_data
woocommerce/includes/legacy/api/v2/class-wc-api-webhooks.php 253
$data = apply_filters( 'woocommerce_api_edit_webhook_data', $data, $id, $this );
woocommerce/includes/legacy/api/v3/class-wc-api-webhooks.php 253
$data = apply_filters( 'woocommerce_api_edit_webhook_data', $data, $id, $this );