Skip to content

Instantly share code, notes, and snippets.

@rayflores
Created December 9, 2014 06:43
Show Gist options
  • Save rayflores/2a72aff1e170b66566c2 to your computer and use it in GitHub Desktop.
Save rayflores/2a72aff1e170b66566c2 to your computer and use it in GitHub Desktop.
admin args csv exporter
<?php
function rf_wc_csv_add_query_args( $query_args) {
$query_args = array(
'orderby' => 'date_query',
'order' => 'ASC',
);
return $query_args;
}
add_filter( 'wc_customer_order_csv_export_admin_query_args', 'rf_wc_csv_add_query_args', 10,2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment