WC_Product_Attribute::get_visible()publicWC 1.0

Get if visible.

Method of the class: WC_Product_Attribute{}

No Hooks.

Return

true|false.

Usage

$WC_Product_Attribute = new WC_Product_Attribute();
$WC_Product_Attribute->get_visible();

WC_Product_Attribute::get_visible() code WC 8.6.1

public function get_visible() {
	return $this->data['visible'];
}