Automattic\WooCommerce\Admin\Overrides

Order::is_returning_customerpublicWC 1.0

Returns true if the customer has made an earlier order.

Метод класса: Order{}

Хуков нет.

Возвращает

bool.

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

$Order = new Order();
$Order->is_returning_customer();

Код Order::is_returning_customer() WC 11.1.1

public function is_returning_customer() {
	return OrdersStatsDataStore::is_returning_customer( $this, $this->get_report_customer_id() );
}