WC_Product::get_title
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 Product::get title WC 10.4.3
public function get_title() {
return apply_filters( 'woocommerce_product_title', $this->get_name(), $this );
}