woocommerce_order_downloads_table( array $downloads )

Displays order downloads in a table.


Description Description


Parameters Parameters

$downloads

(Required) Downloads.


Top ↑

Source Source

File: includes/wc-template-functions.php

	function woocommerce_order_downloads_table( $downloads ) {
		if ( ! $downloads ) {
			return;
		}
		wc_get_template(
			'order/order-downloads.php',
			array(
				'downloads' => $downloads,
			)
		);
	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.2.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.