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.
Метод класса: 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 Shipping Method::supports WC 9.5.1
public function supports( $feature ) { return apply_filters( 'woocommerce_shipping_method_supports', in_array( $feature, $this->supports ), $feature, $this ); }