get price of product woocommerce code example

Example 1: get price woocommerce product

$product = wc_get_product( $post_id );

$product->get_regular_price();
$product->get_sale_price();
$product->get_price();

Example 2: get product price woocommerce of specific id

$product = wc_get_product( $post_id );

$product->get_regular_price();
$product->get_sale_price();
$product->get_price();

Example 3: how to get woocommerce product price

$_product->get_regular_price();
$_product->get_sale_price();
$_product->get_price();

Tags:

Php Example