$product woocommerce code example
Example 1: how to get woocommerce product price
$_product->get_regular_price();
$_product->get_sale_price();
$_product->get_price();
Example 2: is product category woocommerce
if( has_term( 4, 'product_cat' ) ) {
// do something if current product in the loop is in product category with ID 4
}