WC_Product::get_width()
Returns the product width.
Метод класса: WC_Product{}
Хуков нет.
Возвращает
Строку
.
Использование
$WC_Product = new WC_Product(); $WC_Product->get_width( $context );
- $context(строка)
- What the value is for. Valid values are view and edit.
По умолчанию: 'view'
Код WC_Product::get_width() WC Product::get width WC 9.3.3
public function get_width( $context = 'view' ) { return $this->get_prop( 'width', $context ); }