Woocommerce wp_query按ID获取订单

问题描述 投票:3回答:2

我正在尝试生成订单数据的简单输出。第一步是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是有效的邮政ID,则查询不返回任何内容。

知道为什么,蜂巢头脑?

或者,有一种Woocommerce方式可以生成一个布局如下的普通页面;

Order ID: 836
Order Status: ....

我假设一个WP_Query将是显而易见的方式,但它看起来像获取woocommerce订单数据不是直截了当。

php wordpress woocommerce foreach orders
2个回答
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>';
    }
}

0
投票

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

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

© www.soinside.com 2019 - 2024. All rights reserved.