WC_Shipping_Method::get_title()publicWC 1.0

Return the shipping title which is user set.

Method of the class: WC_Shipping_Method{}

Hooks from the method

Return

String.

Usage

$WC_Shipping_Method = new WC_Shipping_Method();
$WC_Shipping_Method->get_title();

WC_Shipping_Method::get_title() code WC 8.7.0

public function get_title() {
	return apply_filters( 'woocommerce_shipping_method_title', $this->title, $this->id );
}