WC_Abstract_Legacy_Order::email_order_items_table()
Устарела с версии 3.0.0 Moved to template functions.. Больше не поддерживается и может быть удалена. Рекомендуется заменить эту функцию на аналог.
Output items for display in html emails.
Метод класса: WC_Abstract_Legacy_Order{}
Хуков нет.
Возвращает
Строку
.
Использование
$WC_Abstract_Legacy_Order = new WC_Abstract_Legacy_Order(); $WC_Abstract_Legacy_Order->email_order_items_table( $args );
- $args(массив)
- Items args.
По умолчанию: array()
Список изменений
Устарела с 3.0.0 | Moved to template functions. |
Код WC_Abstract_Legacy_Order::email_order_items_table() WC Abstract Legacy Order::email order items table WC 9.3.3
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 ); }