WC_REST_Products_V1_Controller::get_attribute_taxonomy_label()protectedWC 1.0

Get attribute taxonomy label.

Method of the class: WC_REST_Products_V1_Controller{}

No Hooks.

Return

String.

Usage

// protected - for code of main (parent) or child class
$result = $this->get_attribute_taxonomy_label( $name );
$name(string) (required)
Taxonomy name.

WC_REST_Products_V1_Controller::get_attribute_taxonomy_label() code WC 8.7.0

protected function get_attribute_taxonomy_label( $name ) {
	$tax    = get_taxonomy( $name );
	$labels = get_taxonomy_labels( $tax );

	return $labels->singular_name;
}