/**
* Get product price by product ID in WooCommerce.
*
* @see https://wpcodebook.com/snippets/get-product-price-by-product-id-in-woocommerce/
*/
function wpcb_get_product_price( $product_id ) {
return ( ( $product = wc_get_product( $product_id ) ) ? $product->get_price() : false );
}