get product price wordpress

To get the price of a product in WordPress, you can use the following code:

global $product; $price = $product->get_price();

This code retrieves the product price and stores it in the variable $price.

Make sure to use this code within the appropriate context, such as a template file or a function that is related to displaying product information.