WC_Product_Variation::get_title()
Get the product's title. For variations this is the parent product name.
Method of the class: WC_Product_Variation{}
Hooks from the method
Return
String
.
Usage
$WC_Product_Variation = new WC_Product_Variation(); $WC_Product_Variation->get_title();
WC_Product_Variation::get_title() WC Product Variation::get title code WC 7.7.0
public function get_title() { return apply_filters( 'woocommerce_product_title', $this->parent_data['title'], $this ); }