我正在使用woo commerce api documentation
我正在使用此代码
$woocommerce = new Client($woocommerce_website_url, $woocommerce_customer_key, $woocommerce_consumer_secret, array(
'wp_api' => true,
'version' => 'wc/v3',
'query_string_auth' => true
));
$woocommerce->get('orders',["created_at_min"=>$date]);
但是我要获得所有订单,但是我要过滤订单的 created_at_min ,但它不起作用。从最近几个小时开始,我就此刻不知所措。任何形式的帮助都是非常可贵的。
答案 0 :(得分:0)
我有解决方案,此代码对我有用:-
$woocommerce->get('orders', array( 'after' => $date) );