WC_Shipping_Method::supports()publicWC 1.0

Check if a shipping method supports a given feature.

Methods should override this to declare support (or lack of support) for a feature.

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

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

Возвращает

true|false. True if the shipping method supports the feature, false otherwise.

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

$WC_Shipping_Method = new WC_Shipping_Method();
$WC_Shipping_Method->supports( $feature );
$feature(строка) (обязательный)
The name of a feature to test support for.

Код WC_Shipping_Method::supports() WC 8.7.0

public function supports( $feature ) {
	return apply_filters( 'woocommerce_shipping_method_supports', in_array( $feature, $this->supports ), $feature, $this );
}