woocommerce_report_downloads_query_from filter-hookWC 1.0

Usage

add_filter( 'woocommerce_report_downloads_query_from', 'wp_kama_woocommerce_report_downloads_query_from_filter' );

/**
 * Function for `woocommerce_report_downloads_query_from` filter-hook.
 * 
 * @param  $query_from 
 *
 * @return 
 */
function wp_kama_woocommerce_report_downloads_query_from_filter( $query_from ){

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

Where the hook is called

WC_Report_Downloads::get_items()
woocommerce_report_downloads_query_from
woocommerce/includes/admin/reports/class-wc-report-downloads.php 330
$query_from  = apply_filters( 'woocommerce_report_downloads_query_from', $query_from );

Where the hook is used in WooCommerce

Usage not found.