wc_after_products_ending_sales
Usage
add_action( 'wc_after_products_ending_sales', 'wp_kama_wc_after_products_ending_sales_action' ); /** * Function for `wc_after_products_ending_sales` action-hook. * * @param $product_ids * * @return void */ function wp_kama_wc_after_products_ending_sales_action( $product_ids ){ // action... }
- $product_ids
- -
Where the hook is called
wc_after_products_ending_sales
woocommerce/includes/wc-product-functions.php 483
do_action( 'wc_after_products_ending_sales', $product_ids );