Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
WC_Tracker::get_orders()
Combine all order data.
Description Description
Return Return
(array)
Source Source
File: includes/class-wc-tracker.php
private static function get_orders() { $order_dates = self::get_order_dates(); $order_counts = self::get_order_counts(); $order_totals = self::get_order_totals(); return array_merge( $order_dates, $order_counts, $order_totals ); }