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()
Return Return
(string)
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 ); }
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |