Warning: This method has been deprecated. Moved to template functions instead.

WC_Abstract_Legacy_Order::email_order_items_table( array $args = array() )

Output items for display in html emails.


Description Description


Parameters Parameters

$args

(Optional) Items args.

Default value: array()


Top ↑

Return Return

(string)


Top ↑

Source Source

File: includes/legacy/abstract-wc-legacy-order.php

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

Top ↑

Changelog Changelog

Changelog
Version Description
3.0.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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