Skip to content

Instantly share code, notes, and snippets.

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 dexit/feb7ffa0ace47d42bf9cbac0f70141ca to your computer and use it in GitHub Desktop.
Save dexit/feb7ffa0ace47d42bf9cbac0f70141ca to your computer and use it in GitHub Desktop.
WooCommerce Class Values
<?php
// Returns subtotal price ($5.00)
$cart_subtotal = WC()->cart->get_cart_subtotal();
// Returns subtotal number value (5)
$cart_subtotal = WC()->cart->subtotal;
/*========================================
Single Product
========================================*/
// Return Single Product Price in number format(5)
$product->get_price();
// Return Single Product Price in display format ($5.00)
$product->get_price_html();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment