Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
629 views
in Technique[技术] by (71.8m points)

wordpress - Get orders pending payment and paid after date

I can get pending order and completed orders within dates with following two separate queries:

$pending_orders = wc_get_orders( array(
                'limit'     => -1, // Query all orders
                'status'    => array( 'wc-pending' ),
            ));
$completed_orders = wc_get_orders( array(
                    'limit'     => -1, // Query all orders
                    'status'    => array( 'wc-completed' ),
                    'date_paid' => $initial_date .'...'. $final_date
                ));

I am wondering, is the wc_get_orders() only performs AND operation? is there no way to perform OR operation. I am trying to get all orders either pending status or paid after date(e.g. paid after 31st December, 2020).

Essentially, I am trying to get all pending orders on 1st January 2021 anytime in future. Thanks in advance.

question from:https://stackoverflow.com/questions/65947862/get-orders-pending-payment-and-paid-after-date

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...