woocommerce get price php plugin code example
Example: get product price by id woocommerce snippet
/**
* Get product price by product ID.
*/
function wc_get_product_price( $product_id ) {
return ( $product = wc_get_product( $product_id ) ) ? $product->get_price() : false;
}