WC_Product_Variation::get_width()
Returns the product width.
Method of the class: WC_Product_Variation{}
Hooks from the method
Return
String
.
Usage
$WC_Product_Variation = new WC_Product_Variation(); $WC_Product_Variation->get_width( $context );
- $context(string)
- What the value is for. Valid values are view and edit.
Default: 'view'
WC_Product_Variation::get_width() WC Product Variation::get width code WC 7.7.0
public function get_width( $context = 'view' ) { $value = $this->get_prop( 'width', $context ); // Inherit value from parent. if ( 'view' === $context && empty( $value ) ) { $value = apply_filters( $this->get_hook_prefix() . 'width', $this->parent_data['width'], $this ); } return $value; }