Automattic\WooCommerce\Admin\API\Reports
DataStore::get_excluded_orders()
Returns comma separated ids of excluded orders, based on query arguments from the user.
Method of the class: DataStore{}
No Hooks.
Return
String
.
Usage
// protected - for code of main (parent) or child class $result = $this->get_excluded_orders( $query_args );
- $query_args(array) (required)
- Parameters supplied by the user.
DataStore::get_excluded_orders() DataStore::get excluded orders code WC 7.3.0
protected function get_excluded_orders( $query_args ) { return $this->get_filtered_ids( $query_args, 'order_excludes' ); }