WC_Cart::get_undo_url()publicWC 1.0

Gets the url to re-add an item into the cart.

Метод класса: WC_Cart{}

Хуков нет.

Возвращает

Строку. url to page

Использование

$WC_Cart = new WC_Cart();
$WC_Cart->get_undo_url( $cart_item_key );
$cart_item_key(строка) (обязательный)
Cart item key to undo.

Код WC_Cart::get_undo_url() WC 8.7.0

public function get_undo_url( $cart_item_key ) {
	wc_deprecated_function( 'WC_Cart::get_undo_url', '3.3', 'wc_get_cart_undo_url' );

	return wc_get_cart_undo_url( $cart_item_key );
}