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