WC_Abstract_Legacy_Order::email_order_items_table()publicWC 1.0

Deprecated from version 3.0.0 Moved to template functions.. It is no longer supported and can 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.

Return

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 8.7.0

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 );
}