WC_Product::get_attributes
Returns product attributes.
Method of the class: WC_Product{}
No Hooks.
Returns
Array.
Usage
$WC_Product = new WC_Product(); $WC_Product->get_attributes( $context );
- $context(string)
- What the value is for. Valid values are view and edit.
Default: 'view'
WC_Product::get_attributes() WC Product::get attributes code WC 10.4.3
public function get_attributes( $context = 'view' ) {
$attributes = $this->get_prop( 'attributes', $context );
if ( ! is_array( $attributes ) ) {
return array();
}
return $attributes;
}