wc_before_products_ending_sales
Использование
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
- -
Где вызывается хук
wc_before_products_ending_sales
woocommerce/includes/wc-product-functions.php 511
do_action( 'wc_before_products_ending_sales', $product_ids );