Automattic\WooCommerce\Admin\Overrides

Order::is_returning_customer()publicWC 1.0

Returns true if the customer has made an earlier order.

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

Хуков нет.

Возвращает

true|false.

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

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

Код Order::is_returning_customer() WC 8.7.0

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