WC_Shipping_Rate::get_label()publicWC 1.0

Get rate label.

Method of the class: WC_Shipping_Rate{}

Hooks from the method

Return

String.

Usage

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

WC_Shipping_Rate::get_label() code WC 8.7.0

public function get_label() {
	return apply_filters( 'woocommerce_shipping_rate_label', $this->data['label'], $this );
}