woocommerce_reports_get_order_report_data_args filter-hookWC 1.0

Usage

add_filter( 'woocommerce_reports_get_order_report_data_args', 'wp_kama_woocommerce_reports_get_order_report_data_args_filter' );

/**
 * Function for `woocommerce_reports_get_order_report_data_args` filter-hook.
 * 
 * @param  $args 
 *
 * @return 
 */
function wp_kama_woocommerce_reports_get_order_report_data_args_filter( $args ){

	// filter...
	return $args;
}
$args
-

Where the hook is called

WC_Admin_Report::get_order_report_data()
woocommerce_reports_get_order_report_data_args
woocommerce/includes/admin/reports/class-wc-admin-report.php 112
$args         = apply_filters( 'woocommerce_reports_get_order_report_data_args', $args );

Where the hook is used in WooCommerce

Usage not found.