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)


Top ↑

Return Return

(string)


Top ↑

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();
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.1 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.