wc_after_products_ending_sales хук-событиеWC 1.0

Использование

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
-

Где вызывается хук

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

Где используется хук в WooCommerce

Использование не найдено.