woocommerce_widget_shopping_cart_subtotal()
Output to view cart subtotal.
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
woocommerce_widget_shopping_cart_subtotal();
Список изменений
С версии 3.7.0 | Введена. |
Код woocommerce_widget_shopping_cart_subtotal() woocommerce widget shopping cart subtotal WC 9.8.2
function woocommerce_widget_shopping_cart_subtotal() { echo '<strong>' . esc_html__( 'Subtotal:', 'woocommerce' ) . '</strong> ' . WC()->cart->get_cart_subtotal(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped }