gpt4 book ai didi

php - 如何在新的 woocommerce 3.x 中获取购物车中的产品标题

转载 作者:行者123 更新时间:2023-12-03 02:53:19 26 4
gpt4 key购买 nike

我在插件中遇到了这个问题,我设法解决了除此之外的所有错误。这是原始代码...

$products = WC()->cart->cart_contents;
$cartTitles = '';
foreach ($products as $product) {
$cartTitles .= $product['quantity'] . '-' . $product['data']->post->post_title;
}

我收到的是典型的通知消息 -

Post was called incorrectly.  Properties should not be accessed directly.

如何获取帖子标题?我尝试使用 $product['data']->get_post() 但它触发了错误。

谢谢。

最佳答案

尝试使用

 $product['data']->get_title();

关于php - 如何在新的 woocommerce 3.x 中获取购物车中的产品标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44150090/

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