WC_Product_Variation::get_title()
Get the product's title. For variations this is the parent product name.
{} It's a 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();
Code of WC_Product_Variation::get_title() WC Product Variation::get title WC 6.5.1
public function get_title() { return apply_filters( 'woocommerce_product_title', $this->parent_data['title'], $this ); }