woocommerce_customer_get_downloadable_products хук-фильтрWC 1.0

Использование

add_filter( 'woocommerce_customer_get_downloadable_products', 'wp_kama_woocommerce_customer_get_downloadable_products_filter' );

/**
 * Function for `woocommerce_customer_get_downloadable_products` filter-hook.
 * 
 * @param  $downloads 
 *
 * @return 
 */
function wp_kama_woocommerce_customer_get_downloadable_products_filter( $downloads ){

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

Где вызывается хук

WC_Customer::get_downloadable_products()
woocommerce_customer_get_downloadable_products
woocommerce/includes/class-wc-customer.php 233
return apply_filters( 'woocommerce_customer_get_downloadable_products', $downloads );

Где используется хук в WooCommerce

Использование не найдено.