WC_Order::get_shipping_last_name()publicWC 1.0

Get shipping_last_name.

Method of the class: WC_Order{}

No Hooks.

Return

String.

Usage

$WC_Order = new WC_Order();
$WC_Order->get_shipping_last_name( $context );
$context(string)
What the value is for. Valid values are view and edit.
Default: 'view'

WC_Order::get_shipping_last_name() code WC 8.7.0

public function get_shipping_last_name( $context = 'view' ) {
	return $this->get_address_prop( 'last_name', 'shipping', $context );
}