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.

Method of the class: WC_Shipping_Method{}

Hooks from the method

Return

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

Usage

$WC_Shipping_Method = new WC_Shipping_Method();
$WC_Shipping_Method->supports( $feature );
$feature(string) (required)
The name of a feature to test support for.

WC_Shipping_Method::supports() code WC 8.7.0

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