woocommerce_analytics_customers_query_args
Использование
add_filter( 'woocommerce_analytics_customers_query_args', 'wp_kama_woocommerce_analytics_customers_query_args_filter' );
/**
* Function for `woocommerce_analytics_customers_query_args` filter-hook.
*
* @param $array
*
* @return
*/
function wp_kama_woocommerce_analytics_customers_query_args_filter( $array ){
// filter...
return $array;
}
- $array
- -
Где вызывается хук
woocommerce_analytics_customers_query_args
woocommerce/src/Admin/API/Leaderboards.php 243-252
apply_filters( 'woocommerce_analytics_customers_query_args', array( 'orderby' => 'total_spend', 'order' => 'desc', 'order_after' => $after, 'order_before' => $before, 'per_page' => $per_page, ) )