WC_Product::get_title
Get the product's title. For products this is the product name.
Method of the class: WC_Product{}
Hooks from the method
Returns
String.
Usage
$WC_Product = new WC_Product(); $WC_Product->get_title();
WC_Product::get_title() WC Product::get title code WC 10.5.0
public function get_title() {
return apply_filters( 'woocommerce_product_title', $this->get_name(), $this );
}