WC_Abstract_Legacy_Order::email_order_items_tablepublicWC 1.0

Deprecated since 3.0.0 Moved to template functions.. It is no longer supported and may be removed in future releases. It is recommended to replace this function with the same one.

Output items for display in html emails.

Method of the class: WC_Abstract_Legacy_Order{}

No Hooks.

Returns

String.

Usage

$WC_Abstract_Legacy_Order = new WC_Abstract_Legacy_Order();
$WC_Abstract_Legacy_Order->email_order_items_table( $args );
$args(array)
Items args.
Default: array()

Changelog

Deprecated since 3.0.0 Moved to template functions.

WC_Abstract_Legacy_Order::email_order_items_table() code WC 10.6.2

public function email_order_items_table( $args = array() ) {
	wc_deprecated_function( 'WC_Order::email_order_items_table', '3.0', 'wc_get_email_order_items' );
	return wc_get_email_order_items( $this, $args );
}