9
votes

I want to get all orders made by current user inside a plugin function.

I'm using this:

    function get_all_orders(){
        $customer_orders = get_posts( apply_filters( 'woocommerce_my_account_my_orders_query', array(
            'numberposts' => $order_count,
            'meta_key'    => '_customer_user',
            'meta_value'  => get_current_user_id(),
            'post_type'   => wc_get_order_types( 'view-orders' ),
            'post_status' => array_keys( wc_get_order_statuses() )
        ) ) );
   return $customer_orders;
  }

This works well inside theme but inside custom plugin it doesn't return anything. Am i doing something wrong? Should i call some WooCommerce class first?

2
I have test your code in a plugin, activate it, and is just working perfectly without any needs, on front end. Your problem is somewhere else…LoicTheAztec

2 Answers

15
votes

The API might have changed since the original question, but this is a lot more elegant and uses WC’s own functions:

$args = array(
    'customer_id' => $user_id
);
$orders = wc_get_orders($args);

You can use many more other $args.

1
votes
    if (!class_exists('WooCommerce')) :
        require ABSPATH . 'wp-content/plugins/woocommerce/woocommerce.php';
        $orders = get_all_orders();
    endif;

    function get_all_orders() {
        $customer_orders = get_posts(apply_filters('woocommerce_my_account_my_orders_query', array(
            'numberposts' => -1,
            'meta_key' => '_customer_user',
            'meta_value' => get_current_user_id(),
            'post_type' => wc_get_order_types('view-orders'),
            'post_status' => array_keys(wc_get_order_statuses())
                )));
        return $customer_orders;
    }

Try this code.