Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Add shortcode

// Add Shortcode
function magento_product( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'id' => '0',
		),
		$atts
	);

}
add_shortcode( 'MProd', 'magento_product' );