WC_Order::get_formatted_billing_full_name
Get a formatted billing full name.
Метод класса: WC_Order{}
Хуков нет.
Возвращает
Строку.
Использование
$WC_Order = new WC_Order(); $WC_Order->get_formatted_billing_full_name();
Код WC_Order::get_formatted_billing_full_name() WC Order::get formatted billing full name WC 10.8.1
public function get_formatted_billing_full_name() {
/* translators: 1: first name 2: last name */
return sprintf( _x( '%1$s %2$s', 'full name', 'woocommerce' ), $this->get_billing_first_name(), $this->get_billing_last_name() );
}