WC_Customer::get_downloadable_products()publicWC 1.0

Gets a customer's downloadable products.

Method of the class: WC_Customer{}

Return

Array. Array of downloadable products

Usage

$WC_Customer = new WC_Customer();
$WC_Customer->get_downloadable_products();

WC_Customer::get_downloadable_products() code WC 8.7.0

public function get_downloadable_products() {
	$downloads = array();
	if ( $this->get_id() ) {
		$downloads = wc_get_customer_available_downloads( $this->get_id() );
	}
	return apply_filters( 'woocommerce_customer_get_downloadable_products', $downloads );
}