WC_Cart::check_cart_item_validity()publicWC 1.0

Looks through cart items and checks the posts are not trashed or deleted.

Method of the class: WC_Cart{}

No Hooks.

Return

true|false|WP_Error.

Usage

$WC_Cart = new WC_Cart();
$WC_Cart->check_cart_item_validity();

WC_Cart::check_cart_item_validity() code WC 8.7.0

public function check_cart_item_validity() {
	$return = true;

	foreach ( $this->get_cart() as $cart_item_key => $values ) {
		$product = $values['data'];

		if ( ! $product || ! $product->exists() || 'trash' === $product->get_status() ) {
			$this->set_quantity( $cart_item_key, 0 );
			$return = new WP_Error( 'invalid', __( 'An item which is no longer available was removed from your cart.', 'woocommerce' ) );
		}
	}

	return $return;
}