From 0d304d2d2ae930a703ba353b40e42848dcc39a3e Mon Sep 17 00:00:00 2001 From: Allen Smith Date: Mon, 7 Dec 2020 14:36:57 -0500 Subject: [PATCH] Updated wc_get_orders and WC_Order_Query (markdown) --- wc_get_orders-and-WC_Order_Query.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wc_get_orders-and-WC_Order_Query.md b/wc_get_orders-and-WC_Order_Query.md index 7687d1e..98bac1e 100644 --- a/wc_get_orders-and-WC_Order_Query.md +++ b/wc_get_orders-and-WC_Order_Query.md @@ -65,10 +65,10 @@ $orders = $query->get_orders(); **status** -Accepts an array of strings: by default is set to the keys from of `wc_get_order_statuses()`. +Accepts an array of strings: by default is set to the keys of `wc_get_order_statuses()`. ``` -// Get orders on hold. +// Get orders processing and on-hold. $args = array( 'status' => array('wc-processing', 'wc-on-hold'), );