woocommerce_analytics_revenue_query_args filter-hook . WC 1.0
Get revenue data based on the current query vars.
Usage
add_filter( 'woocommerce_analytics_revenue_query_args', 'filter_function_name_7499' ); function filter_function_name_7499( $query_vars ){ // filter... return $query_vars; }
- $query_vars
- -
Where the hook is called
woocommerce/packages/woocommerce-admin/src/API/Reports/Revenue/Query.php 61
$args = apply_filters( 'woocommerce_analytics_revenue_query_args', $this->get_query_vars() );