WC_Shipping_Method::get_title()publicWC 1.0

Return the shipping title which is user set.

Метод класса: WC_Shipping_Method{}

Хуки из метода

Возвращает

Строку.

Использование

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

Код WC_Shipping_Method::get_title() WC 8.7.0

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