WC_Shipping_Method::get_method_description()publicWC 2.6.0

Return the shipping method description.

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

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

Возвращает

Строку.

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

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

Список изменений

С версии 2.6.0 Введена.

Код WC_Shipping_Method::get_method_description() WC 8.7.0

public function get_method_description() {
	return apply_filters( 'woocommerce_shipping_method_description', $this->method_description, $this );
}