我想_sale_price_dates_to
是ACF
meta,或某个定制meta之王,因为产品/变体在默认情况下没有它。
但如果您想从产品及其变体中获得meta,我会这样做。
// because we can have multiple values ill store them in an array
$dates_tosale = [
get_post_meta($product->get_id(), \'_sale_price_dates_to\', true);
];
// check if product is variable
if ($product->get_type() === \'variable\') {
// loop all variations and add _sale_price_dates_to to our array
foreach ($product->get_available_variations() as $variation) {
$dates_tosale[] = get_post_meta($variation[\'variation_id\'], \'_sale_price_dates_to\', true);
}
}