WC_Order_Item_Shipping::get_name()publicWC 1.0

Get order item name.

Method of the class: WC_Order_Item_Shipping{}

No Hooks.

Return

String.

Usage

$WC_Order_Item_Shipping = new WC_Order_Item_Shipping();
$WC_Order_Item_Shipping->get_name( $context );
$context(string)
View or edit context.
Default: 'view'

WC_Order_Item_Shipping::get_name() code WC 8.7.0

public function get_name( $context = 'view' ) {
	return $this->get_method_title( $context );
}