WC_Product::get_title()publicWC 1.0

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

Метод класса: WC_Product{}

Хуки из метода

Возвращает

Строку.

Использование

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

Код WC_Product::get_title() WC 8.7.0

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