Get woocommerce product price on php page Get woocommerce product price on php page wordpress wordpress

Get woocommerce product price on php page


Create a product object. Then you can use any of WooCommerce's product class methods, such as get_price_html()

$product_id = 99;$product = wc_get_product( $product_id );echo $product->get_price_html();