WC_Abstract_Order::get_shipping_method()
Gets formatted shipping method title.
Method of the class: WC_Abstract_Order{}
Hooks from the method
Return
String
.
Usage
$WC_Abstract_Order = new WC_Abstract_Order(); $WC_Abstract_Order->get_shipping_method();
WC_Abstract_Order::get_shipping_method() WC Abstract Order::get shipping method code WC 9.7.1
public function get_shipping_method() { $names = array(); foreach ( $this->get_shipping_methods() as $shipping_method ) { $names[] = $shipping_method->get_name(); } return apply_filters( 'woocommerce_order_shipping_method', implode( ', ', $names ), $this ); }