Skip to content

Instantly share code, notes, and snippets.

@Postnov
Created January 28, 2021 03:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Postnov/7972b65fdff37b9f275548397c28f718 to your computer and use it in GitHub Desktop.
Save Postnov/7972b65fdff37b9f275548397c28f718 to your computer and use it in GitHub Desktop.
Количество товаров в корзине WOO
<?php
// Количество товаров
echo WC()->cart->get_cart_contents_count();
// Проверить количество товаров:
if (WC()->cart->get_cart_contents_count()) {}
// Сумма товаров
echo WC()->cart->get_cart_subtotal();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment