woocommerce_webhook_options action-hookWC 1.0

Fires within the webhook editor, after the Webhook Data fields have rendered.

Usage

add_action( 'woocommerce_webhook_options', 'wp_kama_woocommerce_webhook_options_action' );

/**
 * Function for `woocommerce_webhook_options` action-hook.
 * 
 * @param WC_Webhook $webhook 
 *
 * @return void
 */
function wp_kama_woocommerce_webhook_options_action( $webhook ){

	// action...
}
$webhook(WC_Webhook)
-

Where the hook is called

In file: /includes/admin/settings/views/html-webhooks-edit.php
woocommerce_webhook_options
woocommerce/includes/admin/settings/views/html-webhooks-edit.php 161
do_action( 'woocommerce_webhook_options', $webhook );

Where the hook is used in WooCommerce

Usage not found.