woocommerce_cart_totals()WC 1.0

Output the cart totals.

No Hooks.

Return

null. Nothing (null).

Usage

woocommerce_cart_totals();

woocommerce_cart_totals() code WC 8.6.1

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