Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Untitled Snippet

// Add Shortcode
function artex_tourbiz_calendar_shortcode( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'lang' => 'EN',
			'selection' => '',
		),
		$atts,
		''
	);

}
add_shortcode( 'tourbiz_calendar', 'artex_tourbiz_calendar_shortcode' );