gpt4 book ai didi

woocommerce - Woocommerce,从版本ID获取版本名称

转载 作者:行者123 更新时间:2023-12-04 16:59:49 27 4
gpt4 key购买 nike

我使用以下方法获取购物车中产品的版本ID。

    $cartdetails = $woocommerce->cart->get_cart();


foreach($cartdetails as $cart_items) {
$variation_id = $cart_items['variation_id']; //get variation id of product in cart
}

我检查了数组,变化名称不是一个值。如何从版本ID获取版本名称?

最佳答案

您可以在产品对象上使用get_formatted_name()方法。我相信该对象可能包含在$cart_items数组中,但我不确定100%。如果没有,那么您可以获取产品并使用它。

$variation = wc_get_product($variation_id);
$variation->get_formatted_name();

关于woocommerce - Woocommerce,从版本ID获取版本名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29208051/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com