get_product()WC 1.0

Deprecated since 3.0. It is no longer supported and may be removed in future releases. It is recommended to replace this function with the same one.

No Hooks.

Returns

WC_Product|null|false.

Usage

get_product( $the_product, $args );
$the_product
.
Default: false
$args
.
Default: array()

Changelog

Deprecated since 3.0

get_product() code WC 10.6.2

function get_product( $the_product = false, $args = array() ) {
	wc_deprecated_function( __FUNCTION__, '3.0', 'wc_get_product' );
	return wc_get_product( $the_product, $args );
}