WC_Order::has_billing_address()
Returns true if the order has a billing address.
Метод класса: WC_Order{}
Хуков нет.
Возвращает
true|false
.
Использование
$WC_Order = new WC_Order(); $WC_Order->has_billing_address();
Список изменений
С версии 3.0.4 | Введена. |
Код WC_Order::has_billing_address() WC Order::has billing address WC 9.3.3
public function has_billing_address() { return $this->get_billing_address_1() || $this->get_billing_address_2(); }