Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

bug-aboo

Date, time and temperature setup.

Looking into the making of a shortcode snippet

// Add Shortcode
function bug_aboo( $atts ) {

	// Attributes
	extract( shortcode_atts(
		array(
			'date' => 'enter_date',
			'time' => 'enter_time',
			'temp' => 'enter_temperature',
		), $atts )
	);
}
add_shortcode( 'bugaboo', 'bug_aboo' );