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
Return
String
.
Usage
$WC_Product = new WC_Product(); $WC_Product->get_title();
WC_Product::get_title() WC Product::get title code WC 9.6.1
public function get_title() { return apply_filters( 'woocommerce_product_title', $this->get_name(), $this ); }