Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Availability date

// Add Shortcode
function disponible_shortcode( $atts , $content = null ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'fechadis' => 'availability_date',
		),
		$atts,
		'disponible'
	);

}
add_shortcode( 'disponible', 'disponible_shortcode' );