wc_get_is_pending_statuses()WC 3.6.0

Get list of statuses which are consider 'pending payment'.

Хуки из функции

Возвращает

Массив.

Использование

wc_get_is_pending_statuses();

Список изменений

С версии 3.6.0 Введена.

Код wc_get_is_pending_statuses() WC 9.8.1

function wc_get_is_pending_statuses() {
	/**
	 * Filter the list of statuses which are considered 'pending payment'.
	 *
	 * @since 3.6.0
	 *
	 * @param array $statuses List of statuses.
	 */
	return apply_filters( 'woocommerce_order_is_pending_statuses', array( OrderStatus::PENDING ) );
}