如何在emails / create-new-account.php中获取order_id

时间:2016-09-15 11:44:16

标签: php wordpress woocommerce

我正在尝试在文件/ woocommerce / emails / customer-new-account中获取订单ID,因为我需要它来支持我的功能。

我试过

global $wp;
$order_id = $wp->query_vars['order-received'];

=>这输出NULL

ALSO

$order = new WC_Order($post->ID);  
$order_id = trim(str_replace('#', '', $order->get_order_number()));

=>这会输出与客户放置的订单ID不同的ID。

0 个答案:

没有答案