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