Warning: This function has been deprecated.
woocommerce_get_formatted_product_name( WC_Product $product )
Get product name with extra details such as SKU price and attributes. Used within admin.
Description Description
Parameters Parameters
- $product
-
(Required)
Return Return
(string)
Source Source
File: includes/wc-deprecated-functions.php
function woocommerce_get_formatted_product_name( $product ) {
wc_deprecated_function( __FUNCTION__, '2.1', 'WC_Product::get_formatted_name()' );
return $product->get_formatted_name();
}
Changelog Changelog
| Version | Description |
|---|---|
| 2.1 | Introduced. |