woocommerce_webhook_options_save action-hookWC 1.0

Usage

add_action( 'woocommerce_webhook_options_save', 'wp_kama_woocommerce_webhook_options_save_action' );

/**
 * Function for `woocommerce_webhook_options_save` action-hook.
 * 
 * @param  $webhook_id 
 *
 * @return void
 */
function wp_kama_woocommerce_webhook_options_save_action( $webhook_id ){

	// action...
}
$webhook_id
-

Where the hook is called

WC_Admin_Webhooks::save()
woocommerce_webhook_options_save
woocommerce/includes/admin/class-wc-admin-webhooks.php 141
do_action( 'woocommerce_webhook_options_save', $webhook->get_id() );

Where the hook is used in WooCommerce

Usage not found.