Cart::clear_cart()

Clear the cart.


Return

(bool)


Top ↑

Source

File: src/Tickets/Commerce/Cart.php

	public function clear_cart() {
		$this->set_cart_hash_cookie( null );
		$this->get_repository()->clear();

		unset( $_COOKIE[ static::$cart_hash_cookie_name ] );

		return delete_transient( static::get_current_cart_transient() );
	}

Top ↑

Changelog

Changelog
Version Description
5.1.9 Introduced.