获取 WooCommerce 可变产品变体的销售日期

Get on sale dates for the variations of a WooCommerce variable product

有没有什么方法可以使用 PHP 获取数组中 WooCommerce 可变产品的 on_sale_fromon_sale_to 日期?

此截图中突出显示的红框:

使用以下方法获取可变产品的变体 on_sale_fromon_sale_to 日期:

$sale_dates = array(); // Initializing

if( $product->is_type('variable') ) {
    $variation_ids = $product->get_visible_children();
    foreach( $variation_ids as $variation_id ) {
        $variation = wc_get_product( $variation_id );

        if ( $variation->is_on_sale() ) {
            $date_on_sale_from = $variation->get_date_on_sale_from();
            $date_on_sale_to   = $variation->get_date_on_sale_to();
            
            if( ! empty($date_on_sale_from) || ! empty($date_on_sale_to) ) {
                $sale_dates[$variation_id] = array(
                    'from' => $date_on_sale_from,
                    'to'   => $date_on_sale_to,
                );
            }
        }
    }
    
    // Array row output
    print_r($sale_dates);
}