Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

cw_product_price

CW Product Price

// Add Shortcode
function product_price( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'country' => 'COL',
			'target_currency' => 'COP',
		),
		$atts
	);

	return "Hola mundo"

}
add_shortcode( 'price', 'product_price' );