Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Shortcode

// Add Shortcode
function sub_price_shortcode() {

	// Code
 echo WC()->cart->get_cart_subtotal(); 
}
add_shortcode( 'sub_price', 'sub_price_shortcode' );