get price for id woocommerce code example
Example 1: how to get woocommerce product price
$_product->get_regular_price();
$_product->get_sale_price();
$_product->get_price();
Example 2: wc get price
$product->get_regular_price();
$product->get_sale_price();
$product->get_price();