woocommerce_cart_totals()
Output the cart totals.
No Hooks.
Returns
null. Nothing (null).
Usage
woocommerce_cart_totals();
woocommerce_cart_totals() woocommerce cart totals code WC 10.8.1
function woocommerce_cart_totals() {
if ( is_checkout() ) {
return;
}
wc_get_template( 'cart/cart-totals.php' );
}