woocommerce_cart_totals()

Output the cart totals.


Description Description


Source Source

File: includes/wc-template-functions.php

	function woocommerce_cart_totals() {
		if ( is_checkout() ) {
			return;
		}
		wc_get_template( 'cart/cart-totals.php' );
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.