wc_get_cart_undo_url()
Gets the url to re-add an item into the cart.
Hooks from the function
Returns
String. url to page
Usage
wc_get_cart_undo_url( $cart_item_key );
- $cart_item_key(string) (required)
- Cart item key to undo.
Changelog
| Since 3.3.0 | Introduced. |
wc_get_cart_undo_url() wc get cart undo url code WC 10.6.2
function wc_get_cart_undo_url( $cart_item_key ) {
$cart_page_url = wc_get_cart_url();
$query_args = array(
'undo_item' => $cart_item_key,
);
return apply_filters( 'woocommerce_get_undo_url', $cart_page_url ? wp_nonce_url( add_query_arg( $query_args, $cart_page_url ), 'woocommerce-cart' ) : '', $cart_item_key );
}