You appear to be a bot. Output may be restricted
Description
Do the export.
Usage
WC_CSV_Exporter::export();
Parameters
Returns
void
Source
File name: woocommerce/includes/export/abstract-wc-csv-exporter.php
Lines:
1 to 6 of 6
public function export() { $this->prepare_data_to_export(); $this->send_headers(); $this->send_content( chr( 239 ) . chr( 187 ) . chr( 191 ) . $this->export_column_headers() . $this->get_csv_data() ); die(); }