WC_Product::set_tax_status()
Set the tax status.
Метод класса: WC_Product{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$WC_Product = new WC_Product(); $WC_Product->set_tax_status( $status );
- $status(строка) (обязательный)
- Tax status.
Список изменений
С версии 3.0.0 | Введена. |
Код WC_Product::set_tax_status() WC Product::set tax status WC 9.4.2
public function set_tax_status( $status ) { $options = array( 'taxable', 'shipping', 'none', ); // Set default if empty. if ( empty( $status ) ) { $status = 'taxable'; } $status = strtolower( $status ); if ( ! in_array( $status, $options, true ) ) { $this->error( 'product_invalid_tax_status', __( 'Invalid product tax status.', 'woocommerce' ) ); } $this->set_prop( 'tax_status', $status ); }