woocommerce_cart_totals()WC 1.0

Output the cart totals.

Хуков нет.

Возвращает

null. Ничего (null).

Использование

woocommerce_cart_totals();

Код woocommerce_cart_totals() WC 8.7.0

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