plugin development - How remove trashed WooCommerce orders from wc_get_orders() result?

admin2025-06-04  1

I like to use wc_get_orders() function to get WooCommerce orders in front end.

Here is my code snippet to get orders.

$args = array(
    'customer_id' => get_current_user_id(),
    'return' => 'ids',
    );
$customer_orders = wc_get_orders( $args );

var_dump($customer_orders);

The above code will return all orders of current users.

The issue is, the wc_get_orders return all orders including trashed orders. Is there any option to exclude trashed orders?

More details about this function are available in this link.

I like to use wc_get_orders() function to get WooCommerce orders in front end.

Here is my code snippet to get orders.

$args = array(
    'customer_id' => get_current_user_id(),
    'return' => 'ids',
    );
$customer_orders = wc_get_orders( $args );

var_dump($customer_orders);

The above code will return all orders of current users.

The issue is, the wc_get_orders return all orders including trashed orders. Is there any option to exclude trashed orders?

More details about this function are available in this link.

Share Improve this question asked Jan 4, 2019 at 12:28 Sarathlal NSarathlal N 1211 silver badge5 bronze badges 1
  • Sorry. Previously, I got wrong output due to some error. Now I confirmed that the wc_get_orders() function will exclude trashed orders. – Sarathlal N Commented Jan 6, 2019 at 12:15
Add a comment  | 

1 Answer 1

Reset to default 1

Use Wp_Query instead it will give you the option to get data with status.

$args = array(
  'post_type' => 'shop_order',
 'posts_per_page' => '-1',
'post_status' => array('publish', 'pending', 'draft', 'auto-draft', 'future','private', 'inherit', 'trash')  
);

$my_query = new WP_Query($args);

$orders = $my_query->posts;

echo "<pre>";
print_r($orders);
echo "</pre>";

it will display All of your order.

hope this will help you out.

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1749045189a315887.html

最新回复(0)