Automattic\WooCommerce\Blocks\Domain\Services
DraftOrders::append_draft_order_post_status
Append draft status to a list of statuses.
Метод класса: DraftOrders{}
Хуков нет.
Возвращает
Массив.
Использование
$DraftOrders = new DraftOrders(); $DraftOrders->append_draft_order_post_status( $statuses );
- $statuses(массив) (обязательный)
- Array of statuses.
Код DraftOrders::append_draft_order_post_status() DraftOrders::append draft order post status WC 10.4.3
public function append_draft_order_post_status( $statuses ) {
$statuses[] = self::STATUS;
return $statuses;
}