wc_before_products_ending_sales
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_before_products_ending_sales
woocommerce/includes/wc-product-functions.php 563
do_action( 'wc_before_products_ending_sales', $product_ids );