WC_Shipping_Rate::get_method_id()publicWC 3.2.0

Get shipping method ID the rate belongs to.

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

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

Возвращает

Строку.

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

$WC_Shipping_Rate = new WC_Shipping_Rate();
$WC_Shipping_Rate->get_method_id();

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

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

Код WC_Shipping_Rate::get_method_id() WC 8.7.0

public function get_method_id() {
	return apply_filters( 'woocommerce_shipping_rate_method_id', $this->data['method_id'], $this );
}