woocommerce_coupon_options_usage_limit action-hookWC 1.0

Usage

add_action( 'woocommerce_coupon_options_usage_limit', 'wp_kama_woocommerce_coupon_options_usage_limit_action', 10, 2 );

/**
 * Function for `woocommerce_coupon_options_usage_limit` action-hook.
 * 
 * @param  $coupon_id 
 * @param  $coupon    
 *
 * @return void
 */
function wp_kama_woocommerce_coupon_options_usage_limit_action( $coupon_id, $coupon ){

	// action...
}
$coupon_id
-
$coupon
-

Where the hook is called

WC_Meta_Box_Coupon_Data::output()
woocommerce_coupon_options_usage_limit
woocommerce/includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php 343
<?php do_action( 'woocommerce_coupon_options_usage_limit', $coupon->get_id(), $coupon ); ?>

Where the hook is used in WooCommerce

Usage not found.