woocommerce_webhook_options_save
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
woocommerce_webhook_options_save
woocommerce/includes/admin/class-wc-admin-webhooks.php 141
do_action( 'woocommerce_webhook_options_save', $webhook->get_id() );