WC_Product::set_weight()
Set the product's weight.
Метод класса: WC_Product{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$WC_Product = new WC_Product(); $WC_Product->set_weight( $weight );
- $weight(float|строка) (обязательный)
- Total weight.
Список изменений
С версии 3.0.0 | Введена. |
Код WC_Product::set_weight() WC Product::set weight WC 8.3.1
public function set_weight( $weight ) { $this->set_prop( 'weight', '' === $weight ? '' : wc_format_decimal( $weight ) ); }