Woocommerce product name

时间:2016-11-21 作者:Kevin

为此,我将woocommerce值传递给如下数组:

    \'name\' => $_POST[\'billing_first_name\'],
    \'phone\' => $_POST[\'billing_phone\'],
    \'email\' => $_POST[\'billing_email\'],
    \'note\' => $_POST[\'order_comments\'],
现在我一直在寻找其中一个价值观。订购产品的名称。

enter image description here

\'subject\' => HERE GOES THE PRODUCT NAME VALUE,
我到处找,试过一些东西,但到目前为止什么都没用。

我在工作functions.php

1 个回复
最合适的回答,由SO网友:Benoti 整理而成

假设可以检索订单ID,则可以执行此操作

  $order = new WC_Order($order_id);
  $items = $order->get_items();
然后可以循环搜索结果,将产品名称添加到数组中。

  foreach($items as $item){
         $product_names .= $item[\'name\'] .\' \';
  }

相关推荐