使用Wp_Query
相反,它将为您提供获取状态数据的选项。
$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>";
它将显示您的所有订单。
希望这能帮到你。