WC_Order::get_formatted_shipping_full_name() public WC 1.0
Get a formatted shipping full name.
{} It's a method of the class: WC_Order{}
No Hooks.
Return
String.
Usage
$WC_Order = new WC_Order(); $WC_Order->get_formatted_shipping_full_name();
Code of WC_Order::get_formatted_shipping_full_name() WC Order::get formatted shipping full name WC 5.0.0
public function get_formatted_shipping_full_name() {
/* translators: 1: first name 2: last name */
return sprintf( _x( '%1$s %2$s', 'full name', 'woocommerce' ), $this->get_shipping_first_name(), $this->get_shipping_last_name() );
}