Woocommerce wp_query按ID获取订单

时间:2017-02-18 16:30:04

标签: php wordpress woocommerce foreach orders

我正在尝试生成订单数据的普通输出。第一步是WP_QUery(也许)所以我写这段代码;

$args = array (

    'post_type'  =>'shop_order',
    'posts_per_page' => -1,
    'post_status' => 'any',
    //'p' => $post_id,

);    

$order_query = new WP_Query( $args );

while ( $order_query->have_posts() ) :
  $order_query->the_post(); 

  echo the_ID();
  echo ' : '; 
  the_title();
  echo '<br/><br/>';

endwhile;

如果我设置'p' => $post_id $post_id Order ID: 836 Order Status: .... 是有效的帖子ID,那么产品必须列出所有订单。

任何想法为什么,蜂巢头脑?

另一种方法是使用Woocommerce方式生成具有类似布局的普通页面;

mkdir train && mv ILSVRC2012_img_train.tar train/ && cd train
tar -xvf ILSVRC2012_img_train.tar && rm -f ILSVRC2012_img_train.tar

我认为WP_Query是显而易见的方式,但它看起来就像获取woocommerce订单数据不是直截了当。

2 个答案:

答案 0 :(得分:4)

更新2

要获取一个订单的订单数据,您不需要WP_query。您可以直接使用:

$order = wc_get_order( $order_id );
$order->id; // order ID
$order->post_title; // order Title
$order->post_status; // order Status
// getting order items
foreach($order->get_items() as $item_id => $item_values){
    // Getting the product ID
    $product_id = $item_values['product_id'];
    // .../...
}

更新1

您应该尝试此操作,与 array_keys( wc_get_order_statuses() 一样,您将获得所有订单状态,并使用 'numberposts' => -1, 所有现有订单。

这是另一种方法(没有WP_query或者你可以在WP_query数组中使用thgs):

$customer_orders = get_posts( array( 
    'numberposts'    => -1,
    'post_type' => 'shop_order',
    'post_status'    => array_keys( wc_get_order_statuses() ) 
) );

// Going through each current customer orders
foreach ( $customer_orders as $customer_order ) {

    // Getting Order ID, title and status
    $order_id = $customer_order->ID;
    $order_title = $customer_order->post_title;
    $order_status = $customer_order->post_status;

    // Displaying Order ID, title and status
    echo '<p>Order ID : ' . $order_id . '<br>';
    echo 'Order title: ' . $order_title . '<br>';
    echo 'Order status: ' . $order_status . '<br>';

    // Getting an instance of the order object
    $order = wc_get_order( $order_id );

    // Going through each current customer order items
    foreach($order->get_items() as $item_id => $item_values){
        // Getting the product ID
        $product_id = $item_values['product_id'];
        // displaying the product ID
        echo '<p>Product ID: '.$product_id.'</p>';
    }
}

答案 1 :(得分:0)

此问题的严格答案是将'p'=>$post_id'更改为'post__in' => array($post_id)

...但真正的答案是,任何人都应该走这条路,就是解析电子邮件要容易得多,woocommerce已经为你完成了大部分工作。沿途还有其他一些失误; 1.帖子受到保护,订单备注在摘录中,因此无法显示(我可以将它们移动到meta但是......)2。订单项目在评论中并且必须循环然后解析以产生有意义的输出,所以我不妨直接解析电子邮件。