WC_Product::get_title()publicWC 1.0

Get the product's title. For products this is the product name.

Method of the class: WC_Product{}

Hooks from the method

Return

String.

Usage

$WC_Product = new WC_Product();
$WC_Product->get_title();

WC_Product::get_title() code WC 8.6.1

public function get_title() {
	return apply_filters( 'woocommerce_product_title', $this->get_name(), $this );
}