wc_before_products_ending_sales action-hookWC 1.0

Usage

add_action( 'wc_before_products_ending_sales', 'wp_kama_wc_before_products_ending_sales_action' );

/**
 * Function for `wc_before_products_ending_sales` action-hook.
 * 
 * @param  $product_ids 
 *
 * @return void
 */
function wp_kama_wc_before_products_ending_sales_action( $product_ids ){

	// action...
}
$product_ids
-

Where the hook is called

wc_scheduled_sales()
wc_before_products_ending_sales
woocommerce/includes/wc-product-functions.php 470
do_action( 'wc_before_products_ending_sales', $product_ids );

Where the hook is used in WooCommerce

Usage not found.