From fde10a967bdf7fac34425366e2aca9c730bbf7dc Mon Sep 17 00:00:00 2001 From: Barry Kooij Date: Tue, 19 Aug 2014 12:19:26 +0200 Subject: [PATCH] Soft deprecated get_product function --- includes/wc-deprecated-functions.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/includes/wc-deprecated-functions.php b/includes/wc-deprecated-functions.php index c3458ca567f..2580b8db3d8 100644 --- a/includes/wc-deprecated-functions.php +++ b/includes/wc-deprecated-functions.php @@ -100,6 +100,15 @@ function woocommerce_legacy_paypal_ipn() { } add_action( 'init', 'woocommerce_legacy_paypal_ipn' ); +/** + * get_product soft deprecated for wc_get_product + * + * @deprecated + */ +function get_product( $the_product = false, $args = array() ) { + return wc_get_product( $the_product, $args ); +} + /** * Cart functions (soft deprecated) */