WC_Shipping_Method::supports()
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() WC Shipping Method::supports code WC 9.3.3
public function supports( $feature ) { return apply_filters( 'woocommerce_shipping_method_supports', in_array( $feature, $this->supports ), $feature, $this ); }